mirror of
https://github.com/boostorg/dll.git
synced 2026-01-19 04:12:08 +00:00
15 lines
480 B
CMake
15 lines
480 B
CMake
# Copyright Antony Polukhin, 2021-2026
|
|
#
|
|
# 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
|
|
|
|
if(NOT TARGET tests)
|
|
add_custom_target(tests)
|
|
endif()
|
|
|
|
add_executable(dll_tests_cpp_mangling "cpp_mangling.cpp")
|
|
target_link_libraries(dll_tests_cpp_mangling Boost::dll)
|
|
add_test(NAME dll_tests_cpp_mangling COMMAND dll_tests_cpp_mangling)
|
|
add_dependencies(tests dll_tests_cpp_mangling)
|
|
|