mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
27 lines
389 B
CMake
27 lines
389 B
CMake
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"
|
|
"gsl/gsl_algorithm"
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
install(FILES ${GSL_HEADERS}
|
|
DESTINATION include/gsl
|
|
)
|
|
|
|
enable_testing()
|
|
|
|
add_subdirectory(tests)
|