@@ -12,53 +12,54 @@ set(SOURCES )
1212
1313# Link unit_tests with what we want to test and the GTest and pthread library
1414add_executable (unit_tests ${SOURCES}
15- test /main.cpp
16- test /meta/test_result.cpp
15+ test /meta/test_result.cpp
1716
18- test /pipeline/test_all.cpp
19- test /pipeline/test_any.cpp
20- test /pipeline/test_catenate.cpp
21- test /pipeline/test_drop.cpp
22- test /pipeline/test_filter.cpp
23- test /pipeline/test_gather.cpp
24- test /pipeline/test_grade.cpp
25- test /pipeline/test_iota.cpp
26- test /pipeline/test_map.cpp
27- test /pipeline/test_none.cpp
28- test /pipeline/test_reduce.cpp
29- test /pipeline/test_repeat.cpp
30- test /pipeline/test_reverse.cpp
31- test /pipeline/test_rank.cpp
32- test /pipeline/test_rotate.cpp
33- test /pipeline/test_scatter.cpp
34- test /pipeline/test_size.cpp
35- test /pipeline/test_take.cpp
36- test /pipeline/test_xpr_pipe.cpp
17+ test /pipeline/test_all.cpp
18+ test /pipeline/test_any.cpp
19+ test /pipeline/test_catenate.cpp
20+ test /pipeline/test_drop.cpp
21+ test /pipeline/test_filter.cpp
22+ test /pipeline/test_gather.cpp
23+ test /pipeline/test_grade.cpp
24+ test /pipeline/test_iota.cpp
25+ test /pipeline/test_map.cpp
26+ test /pipeline/test_none.cpp
27+ test /pipeline/test_reduce.cpp
28+ test /pipeline/test_repeat.cpp
29+ test /pipeline/test_reverse.cpp
30+ test /pipeline/test_rank.cpp
31+ test /pipeline/test_rotate.cpp
32+ test /pipeline/test_scatter.cpp
33+ test /pipeline/test_size.cpp
34+ test /pipeline/test_take.cpp
35+ test /pipeline/test_xpr_pipe.cpp
3736
38- test /simple/test_all.cpp
39- test /simple/test_any.cpp
40- test /simple/test_catenate.cpp
41- test /simple/test_drop.cpp
42- test /simple/test_filter.cpp
43- test /simple/test_gather.cpp
44- test /simple/test_grade.cpp
45- test /simple/test_iota.cpp
46- test /simple/test_map.cpp
47- test /simple/test_none.cpp
48- test /simple/test_reduce.cpp
49- test /simple/test_repeat.cpp
50- test /simple/test_reverse.cpp
51- test /simple/test_rank.cpp
52- test /simple/test_rotate.cpp
53- test /simple/test_scatter.cpp
54- test /simple/test_shuffle.cpp
55- test /simple/test_size.cpp
56- test /simple/test_take.cpp
57- test /simple/test_zip.cpp
37+ test /simple/test_all.cpp
38+ test /simple/test_any.cpp
39+ test /simple/test_catenate.cpp
40+ test /simple/test_drop.cpp
41+ test /simple/test_filter.cpp
42+ test /simple/test_gather.cpp
43+ test /simple/test_grade.cpp
44+ test /simple/test_iota.cpp
45+ test /simple/test_map.cpp
46+ test /simple/test_none.cpp
47+ test /simple/test_reduce.cpp
48+ test /simple/test_repeat.cpp
49+ test /simple/test_reverse.cpp
50+ test /simple/test_rank.cpp
51+ test /simple/test_rotate.cpp
52+ test /simple/test_scatter.cpp
53+ test /simple/test_shuffle.cpp
54+ test /simple/test_size.cpp
55+ test /simple/test_take.cpp
56+ test /simple/test_zip.cpp
5857
59- test /test_functional.cpp
58+ test /test_functional.cpp
59+ test /unit_testing.cpp
6060)
61+
6162target_link_libraries (unit_tests ${GTEST_LIBRARIES} pthread)
6263
63- add_executable (main src/_main .cpp ${SOURCES} )
64+ add_executable (main src/main .cpp ${SOURCES} )
6465target_include_directories (main PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} )
0 commit comments