diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-06-02 19:36:53 +0900 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-06-02 19:46:18 +0900 |
commit | 275fc32d588fb6d2b78038f5a97cc2bcd2cd61dc (patch) | |
tree | 02646116685d4e08d694c322278214ec3efde1c8 /common.py | |
parent | 5463420741744c39849a038b6079a7b46ddcb729 (diff) |
gallium: Identify each Windows platform individually from scons.
Diffstat (limited to 'common.py')
-rw-r--r-- | common.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -210,9 +210,11 @@ def generate(env): 'TEST_EXPORTS' , ] if platform == 'windows': - cppdefines += ['PIPE_SUBSYSTEM_USER'] + cppdefines += ['PIPE_SUBSYSTEM_WINDOWS_USER'] if platform == 'winddk': - cppdefines += ['PIPE_SUBSYSTEM_KERNEL'] + cppdefines += ['PIPE_SUBSYSTEM_WINDOWS_DISPLAY'] + if platform == 'wince': + cppdefines += ['PIPE_SUBSYSTEM_WINDOWS_CE'] env.Append(CPPDEFINES = cppdefines) # C compiler options |