1
0
mirror of https://github.com/PerMalmberg/libcron.git synced 2025-10-18 05:45:20 -05:00
Files
libcron/CMakeLists.txt
2021-11-22 11:07:19 +01:00

13 lines
317 B
CMake

cmake_minimum_required(VERSION 3.6)
project(top)
add_subdirectory(libcron)
add_subdirectory(test)
add_dependencies(cron_test libcron)
install(TARGETS libcron DESTINATION lib)
install(DIRECTORY libcron/include/libcron DESTINATION include)
install(DIRECTORY libcron/externals/date/include/date DESTINATION include)