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
9fd8d5f1
Commit
9fd8d5f1
authored
Oct 12, 2004
by
Bill Hoffman
Browse files
allow kdevelop for cygwin
parent
77307ff1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Source/CMakeLists.txt
View file @
9fd8d5f1
...
...
@@ -65,11 +65,11 @@ IF (APPLE)
ENDIF
(
APPLE
)
# Kdevelop only works on UNIX and not windows
IF
(
UNIX
AND NOT WIN32
)
IF
(
UNIX
)
SET
(
SRCS
${
SRCS
}
cmGlobalKdevelopGenerator.cxx
cmLocalKdevelopGenerator.cxx
)
ENDIF
(
UNIX
AND NOT WIN32
)
ENDIF
(
UNIX
)
IF
(
WIN32
)
...
...
bootstrap
View file @
9fd8d5f1
...
...
@@ -389,7 +389,9 @@ rm -f "${TMPFILE}.c"
if
[
-z
"
${
cmake_c_compiler
}
"
]
;
then
cmake_error 6
"Cannot find appropriate C compiler on this system.
Please specify one using environment variable CC."
Please specify one using environment variable CC.
See cmake_bootstrap.log for compilers attempted.
"
fi
echo
"C compiler on this system is:
${
cmake_c_compiler
}
${
cmake_c_flags
}
"
...
...
@@ -445,7 +447,8 @@ rm -f "${TMPFILE}.cxx"
if
[
-z
"
${
cmake_cxx_compiler
}
"
]
;
then
cmake_error 7
"Cannot find appropriate C++ compiler on this system.
Please specify one using environment variable CXX."
Please specify one using environment variable CXX.
See cmake_bootstrap.log for compilers attempted."
fi
echo
"C++ compiler on this system is:
${
cmake_cxx_compiler
}
${
cmake_cxx_flags
}
"
...
...
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