summaryrefslogtreecommitdiff
path: root/tests/SCsub
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2021-11-06 16:05:33 -0500
committerAaron Franke <arnfranke@yahoo.com>2021-11-07 00:43:31 -0600
commit99a282f6319d0c7642f589163b955a636610719a (patch)
tree7b0ebfc160bb684c12760f52c4fa855bdc997a1e /tests/SCsub
parent9f46ce86523e01435ad34de467de586485448278 (diff)
Move and organize tests into subfolders
Diffstat (limited to 'tests/SCsub')
-rw-r--r--tests/SCsub5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/SCsub b/tests/SCsub
index 0f3c14f0bd..31466fffc1 100644
--- a/tests/SCsub
+++ b/tests/SCsub
@@ -22,6 +22,11 @@ if env_tests["platform"] == "windows":
if env_tests.msvc:
env_tests.Append(CCFLAGS=["/bigobj"])
+env_tests.add_source_files(env.tests_sources, "core/*.cpp")
+env_tests.add_source_files(env.tests_sources, "core/math/*.cpp")
+env_tests.add_source_files(env.tests_sources, "core/templates/*.cpp")
+env_tests.add_source_files(env.tests_sources, "scene/*.cpp")
+env_tests.add_source_files(env.tests_sources, "servers/*.cpp")
env_tests.add_source_files(env.tests_sources, "*.cpp")
lib = env_tests.add_library("tests", env.tests_sources)