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 | 8e808e45ae14a6ab9a750bd4aa99d2ddb424d137 (patch) | |
tree | 88f9e5d81279c49445a68cbbecfe1da7d38ceba1 /common.py | |
parent | c53b014f96c4a620cd6e03d47d0f81cbbf258ed2 (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 |