Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt - github.com/microsoft/GSL.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba85857c467b7bd6997303d8718099d913e1afb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
cmake_minimum_required(VERSION 2.8.7)

project(GSL CXX)

set(GSL_HEADERS
    "gsl/gsl.h"
    "gsl/gsl_assert.h"
    "gsl/span.h"
    "gsl/string_span.h"
)

include_directories(
    ${CMAKE_CURRENT_BINARY_DIR}
)

install(FILES ${GSL_HEADERS}
    DESTINATION include/gsl
)

enable_testing()

add_subdirectory(tests)