mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-21 23:53:24 +01:00
13 lines
342 B
CMake
13 lines
342 B
CMake
|
include_directories(${CMAKE_BINARY_DIR}/win ${CMAKE_CURRENT_SOURCE_DIR})
|
||
|
|
||
|
add_library(wm_hooks SHARED
|
||
|
../wm_hooks/wm_hooks.cxx
|
||
|
../wm_hooks/wm_hooks.rc)
|
||
|
|
||
|
# We want the DLL to be named wm_hooks.dll rather than libwm_hooks.dll
|
||
|
set_target_properties(wm_hooks PROPERTIES PREFIX "")
|
||
|
|
||
|
install(TARGETS wm_hooks
|
||
|
RUNTIME DESTINATION ${BIN_DIR}
|
||
|
)
|