1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

Fix installing the dll

Without a runtime install directory, cmake won't install the dll at
all. Only the import library was installed. So fix that.
This commit is contained in:
Andreas Pakulat 2013-10-28 16:02:12 +01:00
parent 5dc62ead9d
commit 650aa17c85

View file

@ -729,6 +729,7 @@ set(CPACK_COMPONENT_HEADERS_DISPLAY_NAME "Header files")
install(TARGETS websockets websockets_shared
LIBRARY DESTINATION lib${LIB_SUFFIX}
ARCHIVE DESTINATION lib${LIB_SUFFIX}
RUNTIME DESTINATION bin
COMPONENT libraries)
set(CPACK_COMPONENT_LIBRARIES_DISPLAY_NAME "Libraries")