Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
CMake: Slightly better fix for installation target (thanks, Anthony!).
- Loading branch information
Showing
with
2 additions
and
5 deletions.
-
+2
−5
CMakeLists.txt
|
@@ -1390,7 +1390,8 @@ endif() |
|
|
##### Installation targets ##### |
|
|
install(TARGETS ${_INSTALL_LIBS} |
|
|
LIBRARY DESTINATION "lib${LIB_SUFFIX}" |
|
|
ARCHIVE DESTINATION "lib${LIB_SUFFIX}") |
|
|
ARCHIVE DESTINATION "lib${LIB_SUFFIX}" |
|
|
RUNTIME DESTINATION bin) |
|
|
|
|
|
file(GLOB INCLUDE_FILES ${SDL2_SOURCE_DIR}/include/*.h) |
|
|
file(GLOB BIN_INCLUDE_FILES ${SDL2_BINARY_DIR}/include/*.h) |
|
@@ -1418,10 +1419,6 @@ if(NOT WINDOWS OR CYGWIN) |
|
|
install(PROGRAMS ${SDL2_BINARY_DIR}/sdl2-config DESTINATION bin) |
|
|
# TODO: what about the .spec file? Is it only needed for RPM creation? |
|
|
install(FILES "${SDL2_SOURCE_DIR}/sdl2.m4" DESTINATION "share/aclocal") |
|
|
else() |
|
|
if(SDL_SHARED) |
|
|
install(TARGETS SDL2 RUNTIME DESTINATION bin) |
|
|
endif() |
|
|
endif() |
|
|
|
|
|
##### Uninstall target ##### |
|
|