9 lines
325 B
CMake
9 lines
325 B
CMake
cmake_minimum_required(VERSION 3.10.0)
|
|
project(zfsbackupcleaner VERSION 0.1.0 LANGUAGES C CXX)
|
|
|
|
find_package(Boost COMPONENTS filesystem system date_time program_options process REQUIRED)
|
|
|
|
add_executable(zfsbackupcleaner main.cpp)
|
|
target_link_libraries(zfsbackupcleaner boost_process boost_filesystem boost_program_options)
|
|
|