In which file are compiler flags saved by xcode? I can't find the file in which they are saved. I added a flag to multiple files without keeping a track of them. Now I am doing a diff from the previous version to find out which files got changed due to the addition of flags, but there are 0 differences.
Asked
Active
Viewed 111 times
0
-
In the .xcodeproj directory? – Richard Hodges Jul 11 '16 at 06:44
1 Answers
1
The compiler flags together with all other build settings could be in either or both of the following locations:
- The
pbxproj
file inside thexcodeproj
container file (that's the default) - Separate
xcconfig
files that encapsulate your build settings.
The latter one you need to create and setup manually but is definitely worth the effort.

Jens Meder
- 4,237
- 1
- 25
- 25