1
0
forked from Alepha/Alepha

More testing.

This commit is contained in:
2023-10-12 18:36:37 -04:00
parent dd3f825ecd
commit 7bafa453da
7 changed files with 17 additions and 3 deletions

View File

@ -20,6 +20,7 @@ link_libraries( alepha )
add_subdirectory( Meta )
add_subdirectory( Proof )
add_subdirectory( Reflection )
add_subdirectory( Testing )
# The local subdir tests to build
add_subdirectory( AutoRAII.test )

1
Testing/CMakeLists.txt Normal file
View File

@ -0,0 +1 @@
add_subdirectory( TableTest.test )

View File

@ -1,3 +0,0 @@
CXXFLAGS+= -std=c++17 -I ../
all: test

View File

@ -0,0 +1,2 @@
unit_test( test )
unit_test( test2 )

13
helpful-things/Makefile Normal file
View File

@ -0,0 +1,13 @@
# You can use this makefile in your
# build directory to drive ninja builds.
__primary: test
all:
ninja -v -j19 all
clean:
ninja clean
test: all
ninja test