diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-08-13 13:55:34 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-08-13 13:55:34 +0100 |
commit | 3a3cdb909da5b02edf921fcb5a009dfc2868d23d (patch) | |
tree | 484f86b3cd2ebbda56a27228f1bf5801e92d97a0 /SConstruct | |
parent | 1ca2945f84e9cb298a7d4ad4ec9a0578097c146d (diff) |
scons: Build the new glsl2 code.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/SConstruct b/SConstruct index a187d8d1b6..bb03e5055e 100644 --- a/SConstruct +++ b/SConstruct @@ -206,28 +206,6 @@ Export('env') # TODO: Build several variants at the same time? # http://www.scons.org/wiki/SimultaneousVariantBuilds -if env['platform'] != common.default_platform: - # GLSL code has to be built twice -- one for the host OS, another for the target OS... - - host_env = Environment( - # options are ignored - # default tool is used - tools = ['default', 'custom'], - toolpath = ['#scons'], - ENV = os.environ, - ) - - host_env['platform'] = common.default_platform - host_env['machine'] = common.default_machine - host_env['debug'] = env['debug'] - - SConscript( - 'src/glsl/SConscript', - variant_dir = os.path.join(env['build'], 'host'), - duplicate = 0, # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html - exports={'env':host_env}, - ) - SConscript( 'src/SConscript', variant_dir = env['build'], |