You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
365 B
25 lines
365 B
cmake_minimum_required(VERSION 2.8.7) |
|
|
|
project(GSL CXX) |
|
|
|
set(GSL_HEADERS |
|
"gsl/gsl" |
|
"gsl/gsl_assert" |
|
"gsl/gsl_byte" |
|
"gsl/gsl_util" |
|
"gsl/multi_span" |
|
"gsl/span" |
|
"gsl/string_span" |
|
) |
|
|
|
include_directories( |
|
${CMAKE_CURRENT_BINARY_DIR} |
|
) |
|
|
|
install(FILES ${GSL_HEADERS} |
|
DESTINATION include/gsl |
|
) |
|
|
|
enable_testing() |
|
|
|
add_subdirectory(tests)
|
|
|