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
892 B

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