Christian Burger
8e71512f12
There is no version detection. If there is any vterm library, it is used. If it is the wrong version, there will be an build error. `libvterm.so.0.0.2` is preferred, which hopefully is compatible to revision 740 or Ubuntu `libvterm0` version 0.1.2-2. If no library is found, the correct one is downloaded and build.
9 lines
299 B
CMake
9 lines
299 B
CMake
# @author Christian Burger <christian@krikkel.de>
|
|
|
|
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() |