2020-01-13 17:11:20 -05:00
|
|
|
cmake_minimum_required(VERSION 3.1.3...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
|
|
|
|
2021-01-05 14:55:13 -05:00
|
|
|
project(GSL
|
2022-01-28 18:22:59 -05:00
|
|
|
VERSION 4.0.0
|
2021-01-05 14:55:13 -05:00
|
|
|
LANGUAGES CXX
|
|
|
|
)
|
2021-01-04 17:17:03 -05:00
|
|
|
|
2020-11-16 17:05:33 -05:00
|
|
|
# Creates a library GSL which is an interface (header files only)
|
2017-04-25 20:08:36 -04:00
|
|
|
add_library(GSL INTERFACE)
|
|
|
|
|
2020-11-16 17:05:33 -05:00
|
|
|
# NOTE: If you want to use GSL prefer to link against GSL using this alias target
|
|
|
|
# EX:
|
|
|
|
# target_link_libraries(foobar PRIVATE Microsoft.GSL::GSL)
|
|
|
|
#
|
|
|
|
# Add Microsoft.GSL::GSL alias for GSL so that dependents can be agnostic about
|
|
|
|
# whether GSL was added via `add_subdirectory` or `find_package`
|
|
|
|
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
|
|
|
|
2020-11-16 17:05:33 -05:00
|
|
|
# This GSL implementation generally assumes a platform that implements C++14 support.
|
|
|
|
set(gsl_min_cxx_standard "14")
|
2018-06-15 13:13:11 -04:00
|
|
|
|
2022-10-18 14:05:09 -04:00
|
|
|
if (PROJECT_IS_TOP_LEVEL)
|
2020-11-16 17:05:33 -05:00
|
|
|
gsl_set_default_cxx_standard(${gsl_min_cxx_standard})
|
|
|
|
else()
|
|
|
|
gsl_client_set_cxx_standard(${gsl_min_cxx_standard})
|
2017-04-25 20:08:36 -04:00
|
|
|
endif()
|
|
|
|
|
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()
|