From 1958ac412c75b0c1c30f0278e263ab0be7eac8bd Mon Sep 17 00:00:00 2001 From: Dmitry Arkhipov Date: Mon, 26 Aug 2024 19:42:19 +1000 Subject: [PATCH] temp --- build/Jamfile | 8 ++++++-- test/Jamfile | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/build/Jamfile b/build/Jamfile index e9373bf96..324a6dd42 100644 --- a/build/Jamfile +++ b/build/Jamfile @@ -80,5 +80,9 @@ project ; alias json_deps ; -alias json_sources : src.cpp : usage-requirements BOOST_JSON_SOURCE ; -lib boost_json : json_sources ; +alias json_sources : src.cpp ; +lib boost_json : json_sources + : shared:BOOST_JSON_DYN_LINK=1 + static:BOOST_JSON_STATIC_LINK=1 + BOOST_JSON_SOURCE + ; diff --git a/test/Jamfile b/test/Jamfile index b9a481a5c..aec42a3e6 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -87,6 +87,6 @@ run no_exceptions.cpp main.cpp /boost/json//json_sources off msvc:"/wd4530" # C++ exception handler used msvc:"/wd4577" # noexcept used without /EHsc - ; + ; run intrusive_macros.cpp main.cpp /boost/json//json_deps ;