2022-04-13 13:10:55 +02:00
|
|
|
# @author Christian Burger <christian@krikkel.de>
|
|
|
|
|
2022-04-03 10:16:20 +02:00
|
|
|
find_path(GSL_INCLUDE_DIR "gsl")
|
|
|
|
if(GSL_INCLUDE_DIR STREQUAL "GSL_INCLUDE_DIR-NOTFOUND")
|
|
|
|
message(SEND_ERROR "Microsoft GSL not found.")
|
|
|
|
else()
|
|
|
|
message(STATUS "Microsoft GSL found.")
|
|
|
|
include_directories(SYSTEM ${GSL_INCLUDE_DIR})
|
|
|
|
endif()
|