summaryrefslogtreecommitdiffhomepage
path: root/example/option_example/CMakeLists.txt
blob: a77d4c56a6eac73e6e8dd44680f9595d12e2bbb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

cmake_minimum_required(VERSION 3.15...3.31)

project(
  OptionExample
  VERSION 1.0
  LANGUAGES CXX)

find_package(Boost REQUIRED COMPONENTS container)

add_executable(OptionExample example.cc)

set_property(TARGET OptionExample PROPERTY CXX_STANDARD 20)
target_include_directories(OptionExample PUBLIC ../../include/)
target_link_libraries(OptionExample PRIVATE Boost::container)