summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-01-08 14:08:18 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-01-08 14:08:18 +0100
commit790f629e5e1cccf721948b1153bb0dee139ac1a5 (patch)
treeca19ab642e59d18918d1f86fae953fc979d7ca51 /SConstruct
parent28d74862677f6d0d94fbfffb305750da41f77930 (diff)
Move core engine tests to core/
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index 45d8b10206..a1af763031 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")