Files

31 lines
878 B
Plaintext
Raw Permalink Normal View History

#
2026-07-10 09:33:19 +02:00
# Copyright (c) 2025-2026 Ivica Siladic, Bruno Iljazovic, Korina Simicevic
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
#
import-search /boost/config/checks ;
import ac ;
2025-05-06 12:11:29 +02:00
import testing ;
# Use these requirements as both regular and usage requirements across all tests
local requirements =
<library>/boost/mqtt5//boost_mqtt5
<define>BOOST_ALL_NO_LIB=1
<define>BOOST_ASIO_NO_DEPRECATED=1
<define>BOOST_TEST_NO_MAIN=1
2025-11-13 16:40:18 +01:00
<define>BOOST_MQTT5_UNIT_TESTS=1
<toolset>msvc:<cxxflags>"/bigobj"
<target-os>windows:<define>_WIN32_WINNT=0x0601
<library>/boost/test//included
;
run
src/run_tests.cpp
[ glob "unit/*.cpp" ]
: requirements $(requirements)
<include>include
2025-11-13 16:40:18 +01:00
: target-name boost_mqtt5_unittests
;