Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

14 lignes
764 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} "${CMAKE_CURRENT_SOURCE_DIR}/../../../inc/cmake/")
  8. # Projects ########################################################################################
  9. Add_SubDirectory ( ${CMAKE_CURRENT_SOURCE_DIR}/src )
  10. Add_SubDirectory ( ${CMAKE_CURRENT_SOURCE_DIR}/test )