diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-03-12 14:26:59 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-03-12 14:26:59 (GMT) |
commit | b99129d2d81a494055d40443e8e044c9db4ca807 (patch) | |
tree | 07cbf0e96e3cb1480e182f5bbbf860d2224beade /Source/cmIncludeExternalMSProjectCommand.cxx | |
parent | cf7eeab37aa644a0a09cb40e8958d99e8d771857 (diff) | |
download | CMake-b99129d2d81a494055d40443e8e044c9db4ca807.zip CMake-b99129d2d81a494055d40443e8e044c9db4ca807.tar.gz CMake-b99129d2d81a494055d40443e8e044c9db4ca807.tar.bz2 |
ENH: some code cleanup
Diffstat (limited to 'Source/cmIncludeExternalMSProjectCommand.cxx')
-rw-r--r-- | Source/cmIncludeExternalMSProjectCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmIncludeExternalMSProjectCommand.cxx b/Source/cmIncludeExternalMSProjectCommand.cxx index f00d9c3..d4a74ba 100644 --- a/Source/cmIncludeExternalMSProjectCommand.cxx +++ b/Source/cmIncludeExternalMSProjectCommand.cxx @@ -52,7 +52,7 @@ bool cmIncludeExternalMSProjectCommand // Create a target instance for this utility. cmTarget target; target.SetType(cmTarget::UTILITY, utility_name.c_str()); - target.SetInAll(true); + target.SetProperty("EXCLUDE_FROM_ALL","FALSE"); target.SetMakefile(this->Makefile); std::vector<std::string> no_outputs; cmCustomCommandLines commandLines; |