mirror of
https://github.com/boostorg/assert.git
synced 2026-04-29 10:13:27 +02:00
24 lines
1.3 KiB
CMake
24 lines
1.3 KiB
CMake
# Copyright 2018 Peter Dimov
|
|
#
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
#
|
|
# See accompanying file LICENSE_1_0.txt or copy at
|
|
# http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
boost_test(NAME assert_test SOURCES assert_test.cpp LIBRARIES Boost::assert Boost::core)
|
|
boost_test(NAME current_function_test SOURCES current_function_test.cpp LIBRARIES Boost::assert Boost::core)
|
|
boost_test(NAME verify_test SOURCES verify_test.cpp LIBRARIES Boost::assert Boost::core)
|
|
boost_test(NAME assert_is_void_test SOURCES assert_is_void_test.cpp LIBRARIES Boost::assert Boost::core)
|
|
|
|
# expansion tests are in exp/ so that there is a backslash in the path on Windows
|
|
|
|
boost_test(NAME assert_exp_test SOURCES exp/assert_exp_test.cpp LIBRARIES Boost::assert Boost::core)
|
|
boost_test(NAME assert_msg_exp_test SOURCES exp/assert_msg_exp_test.cpp LIBRARIES Boost::assert Boost::core)
|
|
boost_test(NAME verify_exp_test SOURCES exp/verify_exp_test.cpp LIBRARIES Boost::assert Boost::core)
|
|
boost_test(NAME verify_msg_exp_test SOURCES exp/verify_msg_exp_test.cpp LIBRARIES Boost::assert Boost::core)
|
|
|
|
boost_test(NAME assert_test2 SOURCES assert_test2.cpp LIBRARIES Boost::assert Boost::core)
|
|
boost_test(NAME assert_msg_test2 SOURCES assert_msg_test2.cpp LIBRARIES Boost::assert Boost::core)
|
|
|
|
boost_test(NAME quick SOURCES quick.cpp LIBRARIES Boost::assert Boost::core)
|