mirror of
https://github.com/Perlmint/glew-cmake.git
synced 2025-04-05 08:22:06 +00:00
CMake - Fix shared runtimes install path
Currently (well, at least on Windows), the created DLL files aren't installed to the correct directory after a build. The dll files are installed to the 'lib' directory. Which actually is the place for the static library or the shared library's symbols file (.lib). The shared library runtimes should be installed to the 'bin' output directory, as proposed in this PR. It also follows convention as used in other notable libraries as libpng, libogg/vorbis, freetype, zlib, tinyxml, etc. See the ```CONFIGURATIONS``` option in [Install command introduction in the CMake manual](https://cmake.org/cmake/help/v3.14/command/install.html#introduction), .
This commit is contained in:
parent
f92c14bcc1
commit
1fd6e0ba45
@ -77,6 +77,7 @@ IF ( glew-cmake_BUILD_SHARED )
|
||||
TARGET_INCLUDE_DIRECTORIES( libglew_shared PUBLIC ${INCLUDE_DIR} )
|
||||
TARGET_LINK_LIBRARIES( libglew_shared ${GL_LIBRARY} ${PLATFORM_SPECIFIC_LIBRARIES} )
|
||||
INSTALL( TARGETS libglew_shared DESTINATION lib )
|
||||
INSTALL( TARGETS libglew_shared RUNTIME DESTINATION bin )
|
||||
ENDIF ( )
|
||||
|
||||
IF ( glew-cmake_BUILD_MULTI_CONTEXT )
|
||||
@ -91,6 +92,7 @@ IF ( glew-cmake_BUILD_SHARED )
|
||||
TARGET_INCLUDE_DIRECTORIES( libglewmx_shared PUBLIC ${INCLUDE_DIR} )
|
||||
TARGET_LINK_LIBRARIES( libglewmx_shared ${GL_LIBRARY} ${PLATFORM_SPECIFIC_LIBRARIES} )
|
||||
INSTALL( TARGETS libglewmx_shared DESTINATION lib )
|
||||
INSTALL( TARGETS libglewmx_shared RUNTIME DESTINATION bin )
|
||||
ENDIF ( )
|
||||
ENDIF ( )
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user