Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CMakeLists.txt 342B

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 ${BIN_DIR}
  9. )