I have a C++ code section that I want to exclude it from building iOS.
How should I do it?
Follow up question:
If I already have an #ifndef WIN32
. I want to combine exclusion of WIN32
with iOS
is it possible to do something like #ifndef WIN32 & iOS
?
How should I exclude my code from building on Win32
& iOS
both in one clause?
PS:
I see a lot of posts explaining how to #ifndef
out iOS but how do I combing it with #ifndef WIN32
is the problem.