From 60f9816f965a584f72ee9885d318ecb8faa418b8 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 6 Aug 2003 12:52:17 -0400 Subject: ENH: do not output make install rules on windows because they do not work --- Source/cmLocalUnixMakefileGenerator.cxx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index 0212fcc..4c6752f 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -2200,6 +2200,11 @@ void cmLocalUnixMakefileGenerator::OutputMakeVariables(std::ostream& fout) void cmLocalUnixMakefileGenerator::OutputInstallRules(std::ostream& fout) { + // Install is not currently supported on windows + if(m_WindowsShell) + { + return; + } const char* root = m_Makefile->GetDefinition("CMAKE_ROOT"); fout << "INSTALL = \"" << root << "/Templates/install-sh\" -c\n"; -- cgit v0.12