I am reusing a legacy C library in an iOS app and in an Android app. I want to customize some macro definitions (e.g. for logging). Are there standard defines to check for (using #ifdef) whether the code is being compiled for iOS or Android/NDK?
|
feedback
|
|
| |||||||
feedback
|
|
you should consider creating two separate projects for those platforms with separate output/bin directories but shared source code. Then you just set some define in project properties for android and ios so you can recognize it when compiling | |||
|
feedback
|
#ifdeffor this. Write portable code and put platform-specific issues in per-platform modules with a common interface. – larsmans Dec 3 '10 at 13:17