mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01:00
Use the same subdirectory list for all platforms: the only place where the list was different for OS X was wrong.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@245 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3237b21c23
commit
c6580d1712
37
SConstruct
37
SConstruct
@ -29,31 +29,8 @@ include_paths = ["../../../Core/Common/Src",
|
||||
# "../../../Plugins/Plugin_VideoOGL/Src/Windows",
|
||||
]
|
||||
|
||||
builders = {}
|
||||
if sys.platform == 'darwin':
|
||||
from plistlib import writePlist
|
||||
def create_plist(target, source, env):
|
||||
properties = {}
|
||||
for src_node in source:
|
||||
properties.update(src_node.value)
|
||||
for dst_node in target:
|
||||
writePlist(properties, str(dst_node))
|
||||
builders['Plist'] = Builder(action = create_plist)
|
||||
|
||||
dirs = ["Source/Core/Common/Src",
|
||||
"Externals/Bochs_disasm",
|
||||
"Source/Core/Core/Src",
|
||||
"Source/Core/DiscIO/Src",
|
||||
"Source/Core/DebuggerWX/src",
|
||||
"Source/Core/VideoCommon/Src",
|
||||
"Source/Plugins/Plugin_VideoOGL/Src",
|
||||
# "Source/Plugins/Plugin_DSP_LLE/Src",
|
||||
"Source/Plugins/Plugin_PadSimple/Src",
|
||||
"Source/Plugins/Plugin_nJoy_SDL/Src",
|
||||
"Source/Core/DolphinWX/src",
|
||||
]
|
||||
else:
|
||||
dirs = ["Source/Core/Common/Src",
|
||||
dirs = [
|
||||
"Source/Core/Common/Src",
|
||||
"Externals/Bochs_disasm",
|
||||
"Source/Core/Core/Src",
|
||||
"Source/Core/DiscIO/Src",
|
||||
@ -67,6 +44,16 @@ else:
|
||||
"Source/Core/DolphinWX/src",
|
||||
]
|
||||
|
||||
builders = {}
|
||||
if sys.platform == 'darwin':
|
||||
from plistlib import writePlist
|
||||
def create_plist(target, source, env):
|
||||
properties = {}
|
||||
for src_node in source:
|
||||
properties.update(src_node.value)
|
||||
for dst_node in target:
|
||||
writePlist(properties, str(dst_node))
|
||||
builders['Plist'] = Builder(action = create_plist)
|
||||
|
||||
lib_paths = include_paths
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user