summaryrefslogtreecommitdiffhomepage
path: root/example/hash_crc32_example/CMakeLists.txt
blob: 7941a33b0c30152f6efb152c2592adf1c057e936 (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(
  HashExample
  VERSION 1.0
  LANGUAGES CXX)

find_package(Boost REQUIRED COMPONENTS container)

add_executable(HashExample example.cpp)

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