You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 360B

123456789101112
  1. include_directories(${CMAKE_BINARY_DIR}/win ${CMAKE_CURRENT_SOURCE_DIR})
  2. add_library(wm_hooks SHARED
  3. ../wm_hooks/wm_hooks.cxx
  4. ../wm_hooks/wm_hooks.rc)
  5. # We want the DLL to be named wm_hooks.dll rather than libwm_hooks.dll
  6. set_target_properties(wm_hooks PROPERTIES PREFIX "")
  7. install(TARGETS wm_hooks
  8. RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}
  9. )