diff options
| author | nakeee <nakeee@gmail.com> | 2009-03-07 22:12:01 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2009-03-07 22:12:01 +0000 |
| commit | e1d2ff6f3f3c8a1b434bddb8d9ee3214d2de495f (patch) | |
| tree | a6a3cc7407c8ca418e6fc731d4eea00c6ac8306f /SconsTests | |
| parent | cad0ca3f5dc02e81bfe21819ca702f5331032e12 (diff) | |
win32 example
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2607 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'SconsTests')
| -rw-r--r-- | SconsTests/utils.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/SconsTests/utils.py b/SconsTests/utils.py index 513d74f62b..a04b5be967 100644 --- a/SconsTests/utils.py +++ b/SconsTests/utils.py @@ -89,6 +89,8 @@ def ConfigPKG(context, name): def CheckPKG(context, name): context.Message( 'Checking for %s... ' % name ) + if platform.system().lower() == 'windows': + return 0 ret = 1 if not CheckFramework(context, name): if not ConfigPKG(context, name.lower()): @@ -101,6 +103,8 @@ def CheckPKG(context, name): def CheckSDL(context, version): context.Message( 'Checking for sdl lib version > %s... ' % version) + if platform.system().lower() == 'windows': + return 1 sdl_config = context.env.WhereIs('sdl-config') if sdl_config == None: ret = 0 |
