mstch/CMakeLists.txt

29 lines
648 B
Text
Raw Normal View History

2015-09-30 14:34:36 +00:00
cmake_minimum_required(VERSION 3.0.2)
2015-04-09 18:41:27 +00:00
project(mstch)
2015-10-10 11:36:14 +00:00
option(WITH_UNIT_TESTS "enable building unit test executable" OFF)
option(WITH_BENCHMARK "enable building benchmark executable" OFF)
2015-09-24 09:43:27 +00:00
2015-09-24 09:51:00 +00:00
set(CMAKE_INCLUDE_CURRENT_DIR ON)
2015-09-30 14:30:19 +00:00
set(CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE ON)
2015-09-24 09:43:27 +00:00
set(CMAKE_BUILD_TYPE Release)
2015-09-30 15:10:44 +00:00
set(mstch_VERSION 0.2.3)
2015-09-30 14:30:19 +00:00
2015-09-24 09:43:27 +00:00
if(NOT MSVC)
2015-10-10 12:00:45 +00:00
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wextra -O3")
2015-09-24 09:43:27 +00:00
endif()
2015-04-12 13:25:16 +00:00
add_subdirectory(src)
2015-09-30 14:30:19 +00:00
2015-04-12 14:13:21 +00:00
if(WITH_UNIT_TESTS)
2015-04-23 10:54:08 +00:00
enable_testing()
2015-10-11 22:24:25 +00:00
add_subdirectory(vendor/headerize)
2015-10-02 15:19:48 +00:00
add_subdirectory(test)
endif()
if(WITH_BENCHMARK)
add_subdirectory(vendor/benchmark)
2015-10-02 15:19:48 +00:00
add_subdirectory(benchmark)
2015-04-12 14:13:21 +00:00
endif()