Simple project based on previous 1 with boost.
This commit is contained in:
parent
51d11391c1
commit
b00350aef5
4 changed files with 71 additions and 0 deletions
10
2024/07/cpp_algorithms2/CMakeLists.txt
Normal file
10
2024/07/cpp_algorithms2/CMakeLists.txt
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue