You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
770 B

  1. # Initialize CMake ################################################################################
  2. If ( NOT CMAKE_BUILD_TYPE )
  3. Set ( CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build!" FORCE )
  4. EndIf ( NOT CMAKE_BUILD_TYPE )
  5. CMake_Minimum_Required ( VERSION 3.5.1 FATAL_ERROR )
  6. Set ( CMAKE_CXX_STANDARD 14 )
  7. Include ( GlobalCompilerFlags OPTIONAL )
  8. Include ( cotire OPTIONAL )
  9. # Projects ########################################################################################
  10. Add_SubDirectory ( ${CMAKE_CURRENT_SOURCE_DIR}/src )
  11. Add_SubDirectory ( ${CMAKE_CURRENT_SOURCE_DIR}/test )