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

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