summaryrefslogtreecommitdiff
path: root/scripts/config.xcconfig.in
Commit message (Collapse)AuthorAgeFilesLines
* [build] generate .xcconfig files with configure_fileKonstantin Käfer2017-03-281-0/+5
We previously used incremental `file(WRITE ...)` commands that gradually recreated the file on every CMake invocation. This sometimes lead to Xcode parsing a partially written file, which in turn breaks building dependend targets. Instead, we're now using a templated configuration file, which ensure that the file is created in one go and hopefully reduces the race condition between CMake and Xcode's automatic project updating.