Making VS2010 code into .exe to be used on mac

I fear the answer, but is there an easy (programmer beginner-friendly) way to make C++ code from VS2010 into an executable file to be used on a mac computer?
The easiest way is to make sure you code in standard C++ (i.e. no Win libs used) and to then just copy the source code over and compile it on the Mac.
The easiest way is to probably give it to someone who has a Mac and ask them to compile it for you, assuming you used no Windows-specific libraries or extensions. :/

-Albatross
Last edited on
Topic archived. No new replies allowed.