summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-02-13 16:17:16 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-02-13 16:17:25 (GMT)
commit16c6764f9bf86298c9cc9407d9e22d0aca189514 (patch)
tree01d4c0c1221042d979e296c805c3f68ade2c96ad /Source
parent31550ebf31a59be391319c2885db46ea8b3a0875 (diff)
parent4349393d1d55abb9977d62d921af2e1fd9f27f29 (diff)
downloadCMake-16c6764f9bf86298c9cc9407d9e22d0aca189514.zip
CMake-16c6764f9bf86298c9cc9407d9e22d0aca189514.tar.gz
CMake-16c6764f9bf86298c9cc9407d9e22d0aca189514.tar.bz2
Merge topic '17711-reset-xcode-target-var'
4349393d cmGlobalXCodeGenerator: Properly initialize TARGETS variable Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !1757
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index b1afdc9..2a38599 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -542,6 +542,7 @@ void cmGlobalXCodeGenerator::CreateReRunCMakeFile(
makefileStream.SetCopyIfDifferent(true);
makefileStream << "# Generated by CMake, DO NOT EDIT\n\n";
+ makefileStream << "TARGETS:= \n";
makefileStream << "empty:= \n";
makefileStream << "space:= $(empty) $(empty)\n";
makefileStream << "spaceplus:= $(empty)\\ $(empty)\n\n";