File tree 6 files changed +57
-4
lines changed
6 files changed +57
-4
lines changed Original file line number Diff line number Diff line change
1
+ common --enable_bzlmod
Original file line number Diff line number Diff line change
1
+ 6.4.0
Original file line number Diff line number Diff line change
1
+ cc_library (
2
+ name = "xtl" ,
3
+ hdrs = glob (["include/**" ]),
4
+ strip_include_prefix = "include" ,
5
+ visibility = ["//visibility:public" ],
6
+ )
Original file line number Diff line number Diff line change
1
+ module (
2
+ name = "xtl" ,
3
+ )
4
+
5
+ bazel_dep (
6
+ name = "doctest" ,
7
+ version = "2.4.11" ,
8
+ dev_dependency = True ,
9
+ )
Original file line number Diff line number Diff line change
1
+ cc_test (
2
+ name = "test_xbase64" ,
3
+ srcs = [
4
+ "test_common_macros.hpp" ,
5
+ "test_xbase64.cpp" ,
6
+ ],
7
+ deps = [
8
+ "//:xtl" ,
9
+ "@doctest//doctest:main" ,
10
+ ],
11
+ )
12
+
13
+ cc_test (
14
+ name = "test_xbasic_fixed_string" ,
15
+ srcs = [
16
+ "test_common_macros.hpp" ,
17
+ "test_xbasic_fixed_string.cpp" ,
18
+ ],
19
+ deps = [
20
+ "//:xtl" ,
21
+ "@doctest//doctest:main" ,
22
+ ],
23
+ )
24
+
25
+ cc_test (
26
+ name = "test_xcomplex" ,
27
+ srcs = [
28
+ "test_common_macros.hpp" ,
29
+ "test_xcomplex.cpp" ,
30
+ ],
31
+ deps = [
32
+ "//:xtl" ,
33
+ "@doctest//doctest:main" ,
34
+ ],
35
+ )
36
+
Original file line number Diff line number Diff line change @@ -85,10 +85,10 @@ find_package(Threads)
85
85
set (XTL_TESTS
86
86
test_xbase64.cpp
87
87
test_xbasic_fixed_string.cpp
88
- test_xcomplex .cpp
88
+ test_xclosure .cpp
89
89
test_xcompare.cpp
90
90
test_xcomplex_sequence.cpp
91
- test_xclosure .cpp
91
+ test_xcomplex .cpp
92
92
test_xdynamic_bitset.cpp
93
93
test_xfunctional.cpp
94
94
test_xhalf_float.cpp
@@ -99,11 +99,11 @@ set(XTL_TESTS
99
99
test_xmeta_utils.cpp
100
100
test_xmultimethods.cpp
101
101
test_xoptional.cpp
102
- test_xsequence.cpp
103
- test_xtype_traits.cpp
104
102
test_xplatform.cpp
105
103
test_xproxy_wrapper.cpp
104
+ test_xsequence.cpp
106
105
test_xsystem.cpp
106
+ test_xtype_traits.cpp
107
107
test_xvariant.cpp
108
108
test_xvisitor.cpp
109
109
)
You can’t perform that action at this time.
0 commit comments