How do I run an exe on another computer if I'm using frameworks?

My ultimate goal is simply to get the program to run on another Mac.


When using Visual Studio, you can compile an exe that will run anywhere as long as its dll's are in the same folder. How can I do something similar on a Mac with framework files?


It's a c++ program that I'm compiling with Xcode 7.


This link seems to offer a solution, but I believe it's instructions are describing an outdated version of Xcode.

https://developer.apple.com/library/mac/documentation/MacOSX/Conceptual/BPFrameworks/Tasks/CreatingFrameworks.html

When you compile in xcode, you are also linking in the frameworks your app is using.

There is no .exe file, there is an .app file which is essentially the same thing but will

only run on a Mac.

How do I run an exe on another computer if I'm using frameworks?
 
 
Q