Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Maik Froechtenicht
glew
Commits
cedd84f8
Commit
cedd84f8
authored
Dec 27, 2016
by
Abdo Roig-Maranges
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake: only install PDB files with msvc
Otherwise cmake windows builds with the mingw compiler are broken.
parent
5766d270
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
build/cmake/CMakeLists.txt
build/cmake/CMakeLists.txt
+1
-1
No files found.
build/cmake/CMakeLists.txt
View file @
cedd84f8
...
...
@@ -194,7 +194,7 @@ install(FILES ${GLEW_DIR}/glew.pc
DESTINATION
${
CMAKE_INSTALL_LIBDIR
}
/pkgconfig
)
if
(
WIN32
AND
(
NOT MSVC_VERSION LESS 1600
)
AND
(
NOT CMAKE_VERSION VERSION_LESS
"3.1"
))
if
(
WIN32 AND
MSVC
AND
(
NOT MSVC_VERSION LESS 1600
)
AND
(
NOT CMAKE_VERSION VERSION_LESS
"3.1"
))
install
(
FILES $<TARGET_PDB_FILE:glew>
DESTINATION
${
CMAKE_INSTALL_LIBDIR
}
...
...
Write
Preview
Markdown
is supported
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