diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-15 17:09:24 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-15 17:09:24 (GMT) |
commit | 9ac968174efc39ee42c011038b99ace4e6a50cec (patch) | |
tree | 09a98cf4c12aa1c9c1356857a7f94ebd7375241d /Source/cmGlobalVisualStudio6Generator.cxx | |
parent | 5c85e88bfd2bd74bb3525a44e5ac321c3272665b (diff) | |
download | CMake-9ac968174efc39ee42c011038b99ace4e6a50cec.zip CMake-9ac968174efc39ee42c011038b99ace4e6a50cec.tar.gz CMake-9ac968174efc39ee42c011038b99ace4e6a50cec.tar.bz2 |
ENH: Handle make install target on Visual Studio 6 and 7 and install templates
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.cxx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index 13bfad6..e585213 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -171,6 +171,11 @@ void cmGlobalVisualStudio6Generator::Generate() { gen[0]->GetMakefile()-> AddUtilityCommand("ALL_BUILD", "echo","\"Build all projects\"",false,srcs); + std::string cmake_command = + m_LocalGenerators[0]->GetMakefile()->GetDefinition("CMAKE_COMMAND"); + gen[0]->GetMakefile()-> + AddUtilityCommand("INSTALL", cmake_command.c_str(), + "-DBUILD_TYPE=$(IntDir) -P cmake_install.cmake",false,srcs); } } @@ -217,6 +222,7 @@ void cmGlobalVisualStudio6Generator::WriteDSWFile(std::ostream& fout, unsigned int i; bool doneAllBuild = false; bool doneRunTests = false; + bool doneInstall = false; for(i = 0; i < generators.size(); ++i) { @@ -306,6 +312,17 @@ void cmGlobalVisualStudio6Generator::WriteDSWFile(std::ostream& fout, doneAllBuild = true; } } + if(l->first == "INSTALL") + { + if(doneInstall) + { + skip = true; + } + else + { + doneInstall = true; + } + } if(l->first == "RUN_TESTS") { if(doneRunTests) |