how do i make a macro saying that the platform is windows?
like this:
#ifdef WINDOWS //this is the one i am talkin about
#include "windowsHeader.h"
#else
#include "linuxHeader.h"
#endif
how do i make a macro saying that the platform is windows?
like this:
#ifdef WINDOWS //this is the one i am talkin about
#include "windowsHeader.h"
#else
#include "linuxHeader.h"
#endif
Any decent compiler will allow you to define macros from the command line, so you can define your WINDOWS macro when compiling:
myawesomecompiler -DWINDOWS 1 mycode.cpp
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.