summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/XcodeProject/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Tests: Avoid warnings about unused argumentsGregor Jasny2020-08-081-1/+1
|
* Revise C++ coding style using clang-formatKitware Robot2016-05-161-2/+3
| | | | | | | | | | | | | Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
* Xcode: Add support for combined install on iOSRuslan Baratov2015-12-101-0/+3
This patch solves the problem of installing both: Device and Simulator libraries on iOS. Before only one of them was installed. If the IOS_INSTALL_COMBINED property is set on a target, a special install hook will be activated which builds the corresponding target and combines both at the install location. The original patch was contributed by Ruslan Baratov, and polished by Gregor Jasny.