This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tsg-hasp-tools/platform/tool/CMakeLists.txt
2023-06-21 10:40:09 +08:00

7 lines
432 B
CMake

add_executable(hasp_verify_demo ${CMAKE_SOURCE_DIR}/platform/tool/hasp_verify_demo.c)
target_link_libraries(hasp_verify_demo pthread rt hasp-tools)
install(TARGETS hasp_verify_demo RUNTIME DESTINATION bin COMPONENT Program)
add_executable(hasp_monitor ${CMAKE_SOURCE_DIR}/platform/tool/hasp_monitor.c)
target_link_libraries(hasp_monitor pthread rt hasp-tools)
install(TARGETS hasp_monitor RUNTIME DESTINATION bin COMPONENT Program)