mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
win32 example
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2607 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
cad0ca3f5d
commit
e1d2ff6f3f
3 changed files with 35 additions and 36 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue