From 67584ca43f2b91ed25386c63ed4a894f26d1b95e Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 22 Dec 2025 15:59:05 +0100 Subject: feat: replace `Jamfile` with `Jamfile.v2`. Signed-off-by: Amlal El Mahrouss --- test/Jamfile | 17 ----------------- test/Jamfile.v2 | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 17 deletions(-) delete mode 100644 test/Jamfile create mode 100644 test/Jamfile.v2 diff --git a/test/Jamfile b/test/Jamfile deleted file mode 100644 index 853d246..0000000 --- a/test/Jamfile +++ /dev/null @@ -1,17 +0,0 @@ -# /* -# * File: Jamfile -# * Author: Amlal El Mahrouss, -# * Copyright 2025, Amlal El Mahrouss, Licensed under the Boost Software License -# */ - -project tests -: default-build debug -; - -exe option.test.o - : option.test.cpp - : gcc : -std=c++20 ; - -exe allocator_op.test.o - : allocator_op.test.cpp - : gcc : -std=c++20 ; \ No newline at end of file diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 new file mode 100644 index 0000000..b0d89d3 --- /dev/null +++ b/test/Jamfile.v2 @@ -0,0 +1,17 @@ +# +# File: Jamfile.v2 +# Author: Amlal El Mahrouss, +# Copyright 2025, Amlal El Mahrouss, Licensed under the Boost Software License +# + +project tests +: default-build debug +; + +exe option.test.o + : option.test.cpp + : -std=c++20 ; + +exe allocator_op.test.o + : allocator_op.test.cpp + : -std=c++20 ; \ No newline at end of file -- cgit v1.2.3