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
43
SConstruct
43
SConstruct
@ -29,6 +29,21 @@ include_paths = ["../../../Core/Common/Src",
|
|||||||
# "../../../Plugins/Plugin_VideoOGL/Src/Windows",
|
# "../../../Plugins/Plugin_VideoOGL/Src/Windows",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
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_HLE/Src",
|
||||||
|
# "Source/Plugins/Plugin_DSP_LLE/Src",
|
||||||
|
"Source/Plugins/Plugin_PadSimple/Src",
|
||||||
|
"Source/Plugins/Plugin_nJoy_SDL/Src",
|
||||||
|
"Source/Core/DolphinWX/src",
|
||||||
|
]
|
||||||
|
|
||||||
builders = {}
|
builders = {}
|
||||||
if sys.platform == 'darwin':
|
if sys.platform == 'darwin':
|
||||||
from plistlib import writePlist
|
from plistlib import writePlist
|
||||||
@ -40,34 +55,6 @@ if sys.platform == 'darwin':
|
|||||||
writePlist(properties, str(dst_node))
|
writePlist(properties, str(dst_node))
|
||||||
builders['Plist'] = Builder(action = create_plist)
|
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",
|
|
||||||
"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_HLE/Src",
|
|
||||||
# "Source/Plugins/Plugin_DSP_LLE/Src",
|
|
||||||
"Source/Plugins/Plugin_PadSimple/Src",
|
|
||||||
"Source/Plugins/Plugin_nJoy_SDL/Src",
|
|
||||||
"Source/Core/DolphinWX/src",
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
lib_paths = include_paths
|
lib_paths = include_paths
|
||||||
|
|
||||||
env = Environment(CC="gcc",
|
env = Environment(CC="gcc",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user