GSL/CMakeLists.txt

23 lines
330 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 2.8.7)
2015-08-20 21:09:14 -04:00
project(GSL CXX)
2015-08-20 21:09:14 -04:00
set(GSL_HEADERS
"include/gsl.h"
"include/gsl_assert.h"
"include/span.h"
"include/string_span.h"
)
2015-08-20 21:09:14 -04:00
include_directories(
${CMAKE_CURRENT_BINARY_DIR}
)
install(FILES ${GSL_HEADERS}
DESTINATION include/gsl
)
2015-08-20 21:09:14 -04:00
enable_testing()
add_subdirectory(tests)