diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-01-08 21:33:23 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-01-08 21:33:37 +0100 |
commit | 8b7a86ec7b7bc4bb115f45545aa062cba47022bc (patch) | |
tree | a5e904e935bf54ef3a8e61c485b0f8e2a3d96a62 /main/SCsub | |
parent | 5bfa4227b309062b3ec9651a5d0c1e560a3f9863 (diff) |
Move tests again from core to main
As advised by @reduz, as tests depend on other libs.
Diffstat (limited to 'main/SCsub')
-rw-r--r-- | main/SCsub | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/SCsub b/main/SCsub index a83563f44d..a09b7c4396 100644 --- a/main/SCsub +++ b/main/SCsub @@ -7,6 +7,8 @@ env.add_source_files(env.main_sources, "*.cpp") Export('env') +SConscript('tests/SCsub') + lib = env.Library("main", env.main_sources) env.Prepend(LIBS=[lib]) |