Move core engine tests to core/
This commit is contained in:
parent
28d7486267
commit
790f629e5e
|
@ -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')
|
|
|
@ -61,6 +61,7 @@ SConscript('os/SCsub')
|
||||||
SConscript('math/SCsub')
|
SConscript('math/SCsub')
|
||||||
SConscript('io/SCsub')
|
SConscript('io/SCsub')
|
||||||
SConscript('bind/SCsub')
|
SConscript('bind/SCsub')
|
||||||
|
SConscript('tests/SCsub')
|
||||||
|
|
||||||
lib = env.Library("core", env.core_sources)
|
lib = env.Library("core", env.core_sources)
|
||||||
|
|
||||||
|
|
|
@ -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 "core/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…
Reference in New Issue