DoorKeeper/CMakeLists.txt
King_DuckZ 931acf3293 2D ascii tile loader refactored out of TileStreamer.
This also adds a static lib part to DoorKeeper that will only contain helper functions.
2014-12-22 16:59:09 +01:00

18 lines
472 B
CMake

cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -std=c++11 -g -O0 -Wall -Wextra")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -std=c++11 -O3 -Wall -Wextra")
#string(COMPARE EQUAL CMAKE_BINARY_DIR CMAKE_SOURCE_DIR IN_SOURCE_BUILD)
find_library(Boost 1.21.0 REQUIRED)
include_directories(SYSTEM
${Boost_INCLUDE_DIRECTORIES}
)
include_directories(
include/
)
add_subdirectory(src)
add_subdirectory(test)