diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-11-09 21:48:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 21:48:13 +0100 |
commit | c305de701c81d027ab6de2855cb3b4432a4e6e7b (patch) | |
tree | e2bc0dc3cc3c61a2511913f993876f59c5867de4 /tests/SCsub | |
parent | e3f3fc517a610d308e92dbc98b38def0f6e81c94 (diff) | |
parent | 99a282f6319d0c7642f589163b955a636610719a (diff) |
Merge pull request #54697 from aaronfranke/move-tests
Move and organize tests into subfolders
Diffstat (limited to 'tests/SCsub')
-rw-r--r-- | tests/SCsub | 5 |
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) |