2023-08-05 11:55:55 +02:00
|
|
|
cmake_minimum_required(VERSION 3.25)
|
|
|
|
project(dynamic_program CXX)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
2023-08-12 00:04:02 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wpedantic -Werror -lreadline")
|
2023-08-06 15:02:50 +02:00
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3")
|
2023-08-05 11:55:55 +02:00
|
|
|
|
2023-08-12 11:44:56 +02:00
|
|
|
include_directories(
|
|
|
|
${PROJECT_SOURCE_DIR}/include
|
|
|
|
)
|
|
|
|
|
2023-08-05 11:55:55 +02:00
|
|
|
find_package(cpr)
|
2023-08-12 11:44:56 +02:00
|
|
|
find_package(Boost 1.81 COMPONENTS program_options REQUIRED)
|
2023-08-05 11:55:55 +02:00
|
|
|
|
|
|
|
include_directories(.)
|
2023-08-12 11:44:56 +02:00
|
|
|
include_directories(${Boost_INCLUDE_DIR})
|
2023-08-05 11:55:55 +02:00
|
|
|
|
2023-08-12 19:15:05 +02:00
|
|
|
add_executable(endgame-analyzer src/main.cpp src/cli_interface.cpp src/download.cpp)
|
2023-08-05 11:55:55 +02:00
|
|
|
|
2023-08-12 11:44:56 +02:00
|
|
|
target_link_libraries(endgame-analyzer cpr)
|
|
|
|
target_link_libraries(endgame-analyzer Boost::program_options)
|
2023-08-05 11:55:55 +02:00
|
|
|
|
2023-08-08 16:27:25 +02:00
|
|
|
#set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_GLIBCXX_DEBUG")
|