mirror of https://github.com/dnomd343/klotski.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
449 B
16 lines
449 B
cmake_minimum_required(VERSION 3.0)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
project(klotski-core VERSION 0.9.1 LANGUAGES CXX)
|
|
|
|
add_compile_options(-fno-exceptions)
|
|
|
|
#set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE)
|
|
|
|
include_directories(utils)
|
|
include_directories(all_cases)
|
|
|
|
add_library(${PROJECT_NAME} all_cases/basic_ranges.cc all_cases/all_cases.cc ffi/all_cases.cc)
|
|
|
|
add_executable(${PROJECT_NAME}_cli main.cc all_cases/basic_ranges.cc all_cases/all_cases.cc)
|
|
|