mirror of
https://github.com/PerMalmberg/libcron.git
synced 2024-11-27 03:09:51 +08:00
10 lines
177 B
CMake
10 lines
177 B
CMake
cmake_minimum_required(VERSION 3.6)
|
|
|
|
set(OUTPUT_LOCATION ${CMAKE_CURRENT_LIST_DIR}/out/)
|
|
|
|
add_subdirectory(libcron)
|
|
add_subdirectory(test)
|
|
|
|
add_dependencies(cron_test libcron)
|
|
|