Move core engine tests to main
(cherry picked from commits790f629e5e
and8b7a86ec7b
)
This commit is contained in:
parent
b1fc41a301
commit
ff490e42da
39 changed files with 4 additions and 8 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
EnsureSConsVersion(0, 14)
|
EnsureSConsVersion(0, 14)
|
||||||
|
@ -360,7 +361,6 @@ if selected_platform in platform_list:
|
||||||
SConscript("scene/SCsub")
|
SConscript("scene/SCsub")
|
||||||
SConscript("tools/SCsub")
|
SConscript("tools/SCsub")
|
||||||
SConscript("drivers/SCsub")
|
SConscript("drivers/SCsub")
|
||||||
SConscript("bin/SCsub")
|
|
||||||
|
|
||||||
SConscript("modules/SCsub")
|
SConscript("modules/SCsub")
|
||||||
SConscript("main/SCsub")
|
SConscript("main/SCsub")
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
#!/usr/bin/python
|
|
||||||
|
|
||||||
Import('env')
|
|
||||||
Export('env')
|
|
||||||
|
|
||||||
SConscript('tests/SCsub')
|
|
|
@ -7,6 +7,8 @@ env.add_source_files(env.main_sources, "*.cpp")
|
||||||
|
|
||||||
Export('env')
|
Export('env')
|
||||||
|
|
||||||
|
SConscript('tests/SCsub')
|
||||||
|
|
||||||
lib = env.Library("main", env.main_sources)
|
lib = env.Library("main", env.main_sources)
|
||||||
|
|
||||||
env.Prepend(LIBS=[lib])
|
env.Prepend(LIBS=[lib])
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
#include "script_language.h"
|
#include "script_language.h"
|
||||||
#include "io/resource_loader.h"
|
#include "io/resource_loader.h"
|
||||||
|
|
||||||
#include "bin/tests/test_main.h"
|
#include "main/tests/test_main.h"
|
||||||
#include "os/dir_access.h"
|
#include "os/dir_access.h"
|
||||||
#include "core/io/ip.h"
|
#include "core/io/ip.h"
|
||||||
#include "scene/resources/packed_scene.h"
|
#include "scene/resources/packed_scene.h"
|
||||||
|
|
Loading…
Add table
Reference in a new issue