summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-04 18:25:02 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-07 15:06:15 (GMT)
commit1f54bc1cf35707a5f1410ff4c6632d7cba351c40 (patch)
tree8940b8c8bb62a4d1849c441515764be4d4fbb6a8 /Source/cmGlobalXCodeGenerator.cxx
parent7568199b4de18ed56ad8ef735c145c4a44327355 (diff)
downloadCMake-1f54bc1cf35707a5f1410ff4c6632d7cba351c40.zip
CMake-1f54bc1cf35707a5f1410ff4c6632d7cba351c40.tar.gz
CMake-1f54bc1cf35707a5f1410ff4c6632d7cba351c40.tar.bz2
cmTarget: Split storage of include directories from genexes.
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 5006828..39933cb 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -463,6 +463,7 @@ cmGlobalXCodeGenerator::AddExtraTargets(cmLocalGenerator* root,
cmTarget* allbuild = mf->AddUtilityCommand("ALL_BUILD", true, no_depends,
no_working_directory,
"echo", "Build all projects");
+ allbuild->Compute();
cmGeneratorTarget* allBuildGt = new cmGeneratorTarget(allbuild, root);
mf->AddGeneratorTarget(allbuild, allBuildGt);
@@ -497,6 +498,7 @@ cmGlobalXCodeGenerator::AddExtraTargets(cmLocalGenerator* root,
true, no_depends,
no_working_directory,
"make", "-f", file.c_str());
+ check->Compute();
cmGeneratorTarget* checkGt = new cmGeneratorTarget(check, root);
mf->AddGeneratorTarget(check, checkGt);
}