portingtools/CMakeLists.txt

15 lines
367 B
CMake
Raw Normal View History

2022-11-05 18:38:08 +01:00
cmake_minimum_required(VERSION 3.0.0)
2022-11-05 18:07:20 +01:00
project(PORTINGTOOLS)
file(GLOB_RECURSE sources src/*)
find_package(Boost 1.80 COMPONENTS log filesystem REQUIRED)
include_directories(${Boost_INCLUDE_DIR})
add_executable(portingtools ${sources})
2022-11-08 21:59:56 +01:00
set_property(TARGET portingtools PROPERTY CXX_STANDARD 20)
2022-11-05 18:07:20 +01:00
target_link_libraries(portingtools LINK_PUBLIC ${Boost_LIBRARIES})