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 481B

1234567891011121314151617181920
  1. include_directories(
  2. .
  3. ${LIBNFC_CPPTOOLS_INCLUDE_PATH}
  4. )
  5. set(SOURCE_FILES
  6. main.cpp
  7. cli/MainClass.cpp
  8. cli/MainClass.h
  9. cli/CommandLineParser.cpp
  10. cli/CommandLineParser.h
  11. DBO/CommandLineOption.cpp
  12. DBO/CommandLineOption.h
  13. )
  14. add_executable(${PROJECT_NAME}-cli ${SOURCE_FILES})
  15. target_link_libraries(${PROJECT_NAME}-cli ${PROJECT_NAME})
  16. install(TARGETS ${PROJECT_NAME}-cli
  17. RUNTIME DESTINATION bin)