CMakeLists.txt 648 B

12345678910111213141516171819202122232425262728
  1. cmake_minimum_required(VERSION 3.0.2)
  2. project(mstch)
  3. option(WITH_UNIT_TESTS "enable building unit test executable" OFF)
  4. option(WITH_BENCHMARK "enable building benchmark executable" OFF)
  5. set(CMAKE_INCLUDE_CURRENT_DIR ON)
  6. set(CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE ON)
  7. set(CMAKE_BUILD_TYPE Release)
  8. set(mstch_VERSION 1.0.1)
  9. if(NOT MSVC)
  10. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Wextra -O3")
  11. endif()
  12. add_subdirectory(src)
  13. if(WITH_UNIT_TESTS)
  14. enable_testing()
  15. add_subdirectory(vendor/headerize)
  16. add_subdirectory(test)
  17. endif()
  18. if(WITH_BENCHMARK)
  19. add_subdirectory(vendor/benchmark)
  20. add_subdirectory(benchmark)
  21. endif()