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.
12 lines
229 B
12 lines
229 B
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(klotski)
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
set(CMAKE_BUILD_TYPE Release)
|
|
endif()
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra")
|
|
|
|
add_subdirectory(src)
|
|
|