Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
60f9816f
Commit
60f9816f
authored
Aug 06, 2003
by
Bill Hoffman
Browse files
ENH: do not output make install rules on windows because they do not work
parent
d9b8768e
Changes
1
Show whitespace changes
Inline
Side-by-side
Source/cmLocalUnixMakefileGenerator.cxx
View file @
60f9816f
...
...
@@ -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
"
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment