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