diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-05-28 01:24:06 +0900 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-05-28 01:24:06 +0900 |
commit | b215d7d10c011adce839b80f87c0ea03a3edd427 (patch) | |
tree | 26508f255b32b35909b86f7b07ce84abb7cae063 /SConstruct | |
parent | 635abed109b26ded34954c379b80e306c602384b (diff) |
scons: Play nice with MS Embedded Visual C++.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index e7c10fcf52..5f7b6dd4d1 100644 --- a/SConstruct +++ b/SConstruct @@ -85,7 +85,7 @@ Export([ # TODO: auto-detect as much as possible if platform == 'winddk': - env.Tool('winddk', ['.']) + env.Tool('winddk', ['scons']) env.Append(CPPPATH = [ env['SDK_INC_PATH'], @@ -94,6 +94,9 @@ if platform == 'winddk': env['CRT_INC_PATH'], ]) +if platform == 'wince': + env.Tool('evc', ['scons']) + common.generate(env) |