I am fairly new to C++. I am currently working on a group project and we want to make our classes compatible with both the lab computers (Windows) and my computer (Mac OS X).

Here is what we have been putting at the top of our files:

#ifdef TARGET_OS_X
#    include <GLUT/glut.h>
#    include <OpenGL/OpenGL.h>
#elif defined _WIN32 || defined _WIN64
#    include <GL\glut.h>
#endif

I realize this question has been asked before but my searches have been giving me conflicting answers such as "_MAC", "TARGET_MAC_OS", "MACINTOSH", etc. What is the current and correct declaration to put in the #ifdef statement to make this compatible with Mac? Right now it is not working.

Thank you!

link|improve this question
feedback

2 Answers

It depends on the compiler. #ifdef __APPLE__ works for gcc.

link|improve this answer
feedback

According to this answer:

#ifdef __APPLE__
    #include "TargetConditionals.h"
    #ifdef TARGET_OS_IPHONE
         // iOS
    #elif TARGET_IPHONE_SIMULATOR
        // iOS Simulator
    #elif TARGET_OS_MAC
        // Other kinds of Mac OS
    #else
        // Unsupported platform
    #endif
#endif

So in short:

#ifdef __APPLE__
    #include "TargetConditionals.h"
    #ifdef TARGET_OS_MAC
        #include <GLUT/glut.h>
        #include <OpenGL/OpenGL.h>
    #endif
#elif defined _WIN32 || defined _WIN64
    #include <GL\glut.h>
#endif 
link|improve this answer
Of course, #ifdef __APPLE__ would be enough if the OP doesn't target iOS. – larsmans Jul 23 '11 at 20:02
@larsmans: Better be sure then sorry. If the user decides to simplify, sure :) – nightcracker Jul 23 '11 at 20:04
1  
TARGET_OS_IPHONE is defined for the iOS Simulator, so you'll need to put the TARGET_IPHONE_SIMULATOR test before it. Also, all three are defined on Apple's platforms--you must test by value (#if TARGET_OS_IPHONE rather than #ifdef TARGET_OS_IPHONE.) – Jonathan Grynspan Jul 23 '11 at 20:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.