CMakeLists.txt 302 B

123456789101112
  1. include(${razer_SOURCE_DIR}/scripts/cmake.global)
  2. add_executable(razerd
  3. razerd.c)
  4. set_target_properties(razerd PROPERTIES COMPILE_FLAGS ${GENERIC_COMPILE_FLAGS})
  5. include_directories("${razer_SOURCE_DIR}/librazer")
  6. target_link_libraries(razerd razer)
  7. install(TARGETS razerd DESTINATION bin)