1234567891011121314151617181920 |
- include_directories(
- .
- ${LIBNFC_CPPTOOLS_INCLUDE_PATH}
- )
-
- set(SOURCE_FILES
- main.cpp
- cli/MainClass.cpp
- cli/MainClass.h
- cli/CommandLineParser.cpp
- cli/CommandLineParser.h
- DBO/CommandLineOption.cpp
- DBO/CommandLineOption.h
- )
-
- add_executable(${PROJECT_NAME}-cli ${SOURCE_FILES})
- target_link_libraries(${PROJECT_NAME}-cli ${PROJECT_NAME})
-
- install(TARGETS ${PROJECT_NAME}-cli
- RUNTIME DESTINATION bin)
|