Simple project based on previous 1 with boost.

This commit is contained in:
Tomasz Półgrabia 2024-07-07 02:25:02 +02:00
parent 51d11391c1
commit b00350aef5
4 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.28)
project(cpp_algorithms2)
set(CMAKE_CXX_STANDARD 17)
find_package(Boost REQUIRED)
add_executable(cpp_algorithms2 main.cpp)
target_include_directories(cpp_algorithms2 PUBLIC ${Boost_INCLUDE_DIRS})
target_link_libraries(cpp_algorithms2 boost::boost)