Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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)