summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-22 15:59:05 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-22 15:59:05 +0100
commit67584ca43f2b91ed25386c63ed4a894f26d1b95e (patch)
tree0e444814b5bbaa32f172d1ab5dfc587557123e03
parent11c218683eccb6cd5166aa8dcb8a051b421b0b40 (diff)
feat: replace `Jamfile` with `Jamfile.v2`.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--test/Jamfile17
-rw-r--r--test/Jamfile.v217
2 files changed, 17 insertions, 17 deletions
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
- : <toolset>gcc : <cxxflags>-std=c++20 ;
-
-exe allocator_op.test.o
- : allocator_op.test.cpp
- : <toolset>gcc : <cxxflags>-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
+ : <cxxflags>-std=c++20 ;
+
+exe allocator_op.test.o
+ : allocator_op.test.cpp
+ : <cxxflags>-std=c++20 ; \ No newline at end of file