Files
commander/CMakeLists.txt
2025-02-24 09:47:45 +08:00

9 lines
298 B
CMake

cmake_minimum_required(VERSION 3.10.0)
project(commander VERSION 0.1.0 LANGUAGES C CXX)
add_library(commander "src/commander.cc")
install(TARGETS commander DESTINATION lib)
install(FILES "src/commander.h" DESTINATION include)
add_executable(test src/main.cc)
target_link_libraries(test commander)