2022-04-22 14:39:00 +02:00
|
|
|
##
|
|
|
|
# @brief Includes Microsoft's "C++ Guidelines Standard Library"
|
2022-04-13 13:10:55 +02:00
|
|
|
# @author Christian Burger <christian@krikkel.de>
|
|
|
|
|
2022-04-22 14:39:00 +02:00
|
|
|
find_path(GSL_INCLUDE_DIR "gsl/gsl" REQUIRED)
|
2022-04-23 20:34:00 +02:00
|
|
|
if(NOT GSL_INCLUDE_DIR)
|
2022-04-03 10:16:20 +02:00
|
|
|
message(SEND_ERROR "Microsoft GSL not found.")
|
|
|
|
else()
|
2022-04-23 20:34:00 +02:00
|
|
|
message(STATUS "Found Microsoft C++ GSL.")
|
2022-04-03 10:16:20 +02:00
|
|
|
include_directories(SYSTEM ${GSL_INCLUDE_DIR})
|
|
|
|
endif()
|