mirror of
https://github.com/boostorg/math.git
synced 2026-01-19 04:22:09 +00:00
* Add boost standard CMake Testing * Add include private * Change CI command * Use boost test and change target
8 lines
438 B
CMake
8 lines
438 B
CMake
# Copyright 2021 Matt Borland
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
include_directories(../../include_private)
|
|
file(GLOB SRC_FILES CONFIGURE_DEPENDS "*.cpp")
|
|
boost_test(TYPE "compile" SOURCES ${SRC_FILES} COMPILE_DEFINITIONS BOOST_MATH_STANDALONE COMPILE_FEATURES cxx_std_17 LINK_LIBRARIES Boost::math Boost::multiprecision Boost::numeric_ublas Boost::unit_test_framework )
|