mstch/CMakeLists.txt

10 lines
276 B
CMake
Raw Normal View History

2015-04-12 22:13:21 +08:00
cmake_minimum_required(VERSION 2.8)
2015-04-10 02:41:27 +08:00
project(mstch)
2015-04-12 22:13:21 +08:00
option (WITH_UNIT_TESTS "enable building unit test executable" OFF)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall")
2015-04-12 21:25:16 +08:00
add_subdirectory(src)
2015-04-12 22:13:21 +08:00
if(WITH_UNIT_TESTS)
enable_testing()
add_subdirectory(test)
endif()