diff options
| -rw-r--r-- | test/Jamfile | 17 | ||||
| -rw-r--r-- | test/Jamfile.v2 | 17 |
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 |
