So I’m trying to port a make file to Xcode. Not sure where to put stuff from CPPFLAGS.
Currently CPPFLAGS = -I../src/ meaning that the preprocessor will append ../src/ to the include directives while trying to resolve paths. I can not modify the source files.
So I’m trying to port a make file to Xcode. Not sure where to
Share
You don’t need any explicit
-Iswitches if you put all your source files and headers into the Xcode project. Xcode will generate all the necessary include directives at build time as it knows where all the headers are.