2022-10-29 15:31:23 -04:00
|
|
|
cmake_minimum_required(VERSION 3.8...3.16)
|
2020-11-16 17:05:33 -05:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/")
|
2022-10-18 14:05:09 -04:00
|
|
|
include(gsl_functions)
|
2020-11-16 17:05:33 -05:00
|
|
|
|
2022-10-29 15:31:23 -04:00
|
|
|
project(GSL VERSION 4.0.0 LANGUAGES CXX)
|
2021-01-04 17:17:03 -05:00
|
|
|
|
2017-04-25 20:08:36 -04:00
|
|
|
add_library(GSL INTERFACE)
|
2020-11-16 17:05:33 -05:00
|
|
|
add_library(Microsoft.GSL::GSL ALIAS GSL)
|
|
|
|
|
2022-10-18 14:05:09 -04:00
|
|
|
# https://cmake.org/cmake/help/latest/variable/PROJECT_IS_TOP_LEVEL.html
|
|
|
|
string(COMPARE EQUAL ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR} PROJECT_IS_TOP_LEVEL)
|
2018-06-07 16:36:56 -04:00
|
|
|
|
2022-10-18 14:05:09 -04:00
|
|
|
option(GSL_INSTALL "Generate and install GSL target" ${PROJECT_IS_TOP_LEVEL})
|
|
|
|
option(GSL_TEST "Build and perform GSL tests" ${PROJECT_IS_TOP_LEVEL})
|
2021-01-05 14:55:13 -05:00
|
|
|
|
2022-10-29 15:31:23 -04:00
|
|
|
# The implementation generally assumes a platform that implements C++14 support
|
|
|
|
target_compile_features(GSL INTERFACE "cxx_std_14")
|
2017-04-25 20:08:36 -04:00
|
|
|
|
2021-01-08 12:56:04 -05:00
|
|
|
# Setup include directory
|
|
|
|
add_subdirectory(include)
|
2018-11-28 18:37:59 -05:00
|
|
|
|
2020-12-15 13:06:46 -05:00
|
|
|
# Add natvis file
|
|
|
|
gsl_add_native_visualizer_support()
|
2017-04-25 20:08:36 -04:00
|
|
|
|
2021-01-05 14:55:13 -05:00
|
|
|
if (GSL_INSTALL)
|
2022-10-18 14:05:09 -04:00
|
|
|
include(gsl_install)
|
2020-06-06 14:42:51 -04:00
|
|
|
endif()
|
2020-04-26 07:37:54 -04:00
|
|
|
|
2017-09-06 20:50:30 -04:00
|
|
|
if (GSL_TEST)
|
2020-05-04 16:31:08 -04:00
|
|
|
enable_testing()
|
|
|
|
add_subdirectory(tests)
|
2020-12-15 13:06:46 -05:00
|
|
|
endif()
|