2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00
Files
math/example/CMakeLists.txt
2021-03-30 11:04:16 +01:00

9 lines
322 B
CMake

# Copyright 2021 Matt Borland
# Distributed under the Boost Software License, Version 1.0.
# https://www.boost.org/LICENSE_1_0.txt
file(GLOB SOURCES "*.cpp")
add_library(examples ${SOURCES})
target_compile_features(examples PRIVATE cxx_std_17)
target_include_directories(compile_tests PUBLIC ${CMAKE_SOURCE_DIR}/include)