diff options
| -rw-r--r-- | SConstruct | 4 | ||||
| -rw-r--r-- | bin/SCsub | 6 | ||||
| -rw-r--r-- | core/SCsub | 1 | ||||
| -rw-r--r-- | core/tests/SCsub (renamed from bin/tests/SCsub) | 0 | ||||
| -rw-r--r-- | core/tests/test_containers.cpp (renamed from bin/tests/test_containers.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_containers.h (renamed from bin/tests/test_containers.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_gdscript.cpp (renamed from bin/tests/test_gdscript.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_gdscript.h (renamed from bin/tests/test_gdscript.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_gui.cpp (renamed from bin/tests/test_gui.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_gui.h (renamed from bin/tests/test_gui.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_image.cpp (renamed from bin/tests/test_image.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_image.h (renamed from bin/tests/test_image.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_io.cpp (renamed from bin/tests/test_io.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_io.h (renamed from bin/tests/test_io.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_main.cpp (renamed from bin/tests/test_main.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_main.h (renamed from bin/tests/test_main.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_math.cpp (renamed from bin/tests/test_math.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_math.h (renamed from bin/tests/test_math.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_physics.cpp (renamed from bin/tests/test_physics.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_physics.h (renamed from bin/tests/test_physics.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_physics_2d.cpp (renamed from bin/tests/test_physics_2d.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_physics_2d.h (renamed from bin/tests/test_physics_2d.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_render.cpp (renamed from bin/tests/test_render.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_render.h (renamed from bin/tests/test_render.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_shader_lang.cpp (renamed from bin/tests/test_shader_lang.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_shader_lang.h (renamed from bin/tests/test_shader_lang.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_sound.cpp (renamed from bin/tests/test_sound.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_sound.h (renamed from bin/tests/test_sound.h) | 0 | ||||
| -rw-r--r-- | core/tests/test_string.cpp (renamed from bin/tests/test_string.cpp) | 0 | ||||
| -rw-r--r-- | core/tests/test_string.h (renamed from bin/tests/test_string.h) | 0 | ||||
| -rw-r--r-- | main/main.cpp | 2 |
31 files changed, 4 insertions, 9 deletions
diff --git a/SConstruct b/SConstruct index 45d8b1020..a1af76303 100644 --- a/SConstruct +++ b/SConstruct @@ -1,3 +1,4 @@ + #!/usr/bin/env python EnsureSConsVersion(0, 14) @@ -347,7 +348,7 @@ if selected_platform in platform_list: if (env['verbose'] == 'no'): methods.no_verbose(sys, env) - + if (True): # FIXME: detect GLES3 env.Append( BUILDERS = { 'GLES3_GLSL' : env.Builder(action = methods.build_gles3_headers, suffix = 'glsl.h',src_suffix = '.glsl') } ) @@ -360,7 +361,6 @@ if selected_platform in platform_list: SConscript("scene/SCsub") SConscript("tools/SCsub") SConscript("drivers/SCsub") - SConscript("bin/SCsub") SConscript("modules/SCsub") SConscript("main/SCsub") diff --git a/bin/SCsub b/bin/SCsub deleted file mode 100644 index 52f7e3bb3..000000000 --- a/bin/SCsub +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/python - -Import('env') -Export('env') - -SConscript('tests/SCsub') diff --git a/core/SCsub b/core/SCsub index 8d89f6427..7e30cfa14 100644 --- a/core/SCsub +++ b/core/SCsub @@ -61,6 +61,7 @@ SConscript('os/SCsub') SConscript('math/SCsub') SConscript('io/SCsub') SConscript('bind/SCsub') +SConscript('tests/SCsub') lib = env.Library("core", env.core_sources) diff --git a/bin/tests/SCsub b/core/tests/SCsub index 03495c064..03495c064 100644 --- a/bin/tests/SCsub +++ b/core/tests/SCsub diff --git a/bin/tests/test_containers.cpp b/core/tests/test_containers.cpp index 4bc297d0b..4bc297d0b 100644 --- a/bin/tests/test_containers.cpp +++ b/core/tests/test_containers.cpp diff --git a/bin/tests/test_containers.h b/core/tests/test_containers.h index 72d5c0ff7..72d5c0ff7 100644 --- a/bin/tests/test_containers.h +++ b/core/tests/test_containers.h diff --git a/bin/tests/test_gdscript.cpp b/core/tests/test_gdscript.cpp index 1ee27ec66..1ee27ec66 100644 --- a/bin/tests/test_gdscript.cpp +++ b/core/tests/test_gdscript.cpp diff --git a/bin/tests/test_gdscript.h b/core/tests/test_gdscript.h index 225654e2a..225654e2a 100644 --- a/bin/tests/test_gdscript.h +++ b/core/tests/test_gdscript.h diff --git a/bin/tests/test_gui.cpp b/core/tests/test_gui.cpp index bfce03d66..bfce03d66 100644 --- a/bin/tests/test_gui.cpp +++ b/core/tests/test_gui.cpp diff --git a/bin/tests/test_gui.h b/core/tests/test_gui.h index 5526320b0..5526320b0 100644 --- a/bin/tests/test_gui.h +++ b/core/tests/test_gui.h diff --git a/bin/tests/test_image.cpp b/core/tests/test_image.cpp index bf9851cf0..bf9851cf0 100644 --- a/bin/tests/test_image.cpp +++ b/core/tests/test_image.cpp diff --git a/bin/tests/test_image.h b/core/tests/test_image.h index 09b33e799..09b33e799 100644 --- a/bin/tests/test_image.h +++ b/core/tests/test_image.h diff --git a/bin/tests/test_io.cpp b/core/tests/test_io.cpp index 42664e73c..42664e73c 100644 --- a/bin/tests/test_io.cpp +++ b/core/tests/test_io.cpp diff --git a/bin/tests/test_io.h b/core/tests/test_io.h index c839590ab..c839590ab 100644 --- a/bin/tests/test_io.h +++ b/core/tests/test_io.h diff --git a/bin/tests/test_main.cpp b/core/tests/test_main.cpp index 1f7f2d7dd..1f7f2d7dd 100644 --- a/bin/tests/test_main.cpp +++ b/core/tests/test_main.cpp diff --git a/bin/tests/test_main.h b/core/tests/test_main.h index c8d571a7d..c8d571a7d 100644 --- a/bin/tests/test_main.h +++ b/core/tests/test_main.h diff --git a/bin/tests/test_math.cpp b/core/tests/test_math.cpp index b3b70986c..b3b70986c 100644 --- a/bin/tests/test_math.cpp +++ b/core/tests/test_math.cpp diff --git a/bin/tests/test_math.h b/core/tests/test_math.h index 492c3a183..492c3a183 100644 --- a/bin/tests/test_math.h +++ b/core/tests/test_math.h diff --git a/bin/tests/test_physics.cpp b/core/tests/test_physics.cpp index 15dc40a4f..15dc40a4f 100644 --- a/bin/tests/test_physics.cpp +++ b/core/tests/test_physics.cpp diff --git a/bin/tests/test_physics.h b/core/tests/test_physics.h index 5b6a54f2d..5b6a54f2d 100644 --- a/bin/tests/test_physics.h +++ b/core/tests/test_physics.h diff --git a/bin/tests/test_physics_2d.cpp b/core/tests/test_physics_2d.cpp index 39b4e7edd..39b4e7edd 100644 --- a/bin/tests/test_physics_2d.cpp +++ b/core/tests/test_physics_2d.cpp diff --git a/bin/tests/test_physics_2d.h b/core/tests/test_physics_2d.h index e2eb1f402..e2eb1f402 100644 --- a/bin/tests/test_physics_2d.h +++ b/core/tests/test_physics_2d.h diff --git a/bin/tests/test_render.cpp b/core/tests/test_render.cpp index 51e136607..51e136607 100644 --- a/bin/tests/test_render.cpp +++ b/core/tests/test_render.cpp diff --git a/bin/tests/test_render.h b/core/tests/test_render.h index 6993e75b9..6993e75b9 100644 --- a/bin/tests/test_render.h +++ b/core/tests/test_render.h diff --git a/bin/tests/test_shader_lang.cpp b/core/tests/test_shader_lang.cpp index 1a677bcbe..1a677bcbe 100644 --- a/bin/tests/test_shader_lang.cpp +++ b/core/tests/test_shader_lang.cpp diff --git a/bin/tests/test_shader_lang.h b/core/tests/test_shader_lang.h index f129fb224..f129fb224 100644 --- a/bin/tests/test_shader_lang.h +++ b/core/tests/test_shader_lang.h diff --git a/bin/tests/test_sound.cpp b/core/tests/test_sound.cpp index 44cc117e0..44cc117e0 100644 --- a/bin/tests/test_sound.cpp +++ b/core/tests/test_sound.cpp diff --git a/bin/tests/test_sound.h b/core/tests/test_sound.h index 91b87a226..91b87a226 100644 --- a/bin/tests/test_sound.h +++ b/core/tests/test_sound.h diff --git a/bin/tests/test_string.cpp b/core/tests/test_string.cpp index d99ad4476..d99ad4476 100644 --- a/bin/tests/test_string.cpp +++ b/core/tests/test_string.cpp diff --git a/bin/tests/test_string.h b/core/tests/test_string.h index 7b3cd9a01..7b3cd9a01 100644 --- a/bin/tests/test_string.h +++ b/core/tests/test_string.h diff --git a/main/main.cpp b/main/main.cpp index 12995f2a1..e3827b9ba 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -47,7 +47,7 @@ #include "script_language.h" #include "io/resource_loader.h" -#include "bin/tests/test_main.h" +#include "core/tests/test_main.h" #include "os/dir_access.h" #include "core/io/ip.h" #include "scene/resources/packed_scene.h" |
