Move tests to the top-level directory

This commit is contained in:
Andrii Doroshenko (Xrayez)
2020-07-26 00:06:07 +03:00
parent 6f292f906e
commit 9f649efe5d
32 changed files with 5 additions and 7 deletions

9
tests/SCsub Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/python
Import("env")
env.tests_sources = []
env.add_source_files(env.tests_sources, "*.cpp")
lib = env.add_library("tests", env.tests_sources)
env.Prepend(LIBS=[lib])