Made layout (indent and quotes) more consistent.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@580 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
dae082e59e
commit
78bb1cf82d
32
SConstruct
32
SConstruct
|
@ -43,20 +43,20 @@ include_paths = [
|
|||
]
|
||||
|
||||
dirs = [
|
||||
"Source/Core/Common/Src",
|
||||
"Externals/Bochs_disasm",
|
||||
"Externals/LZO",
|
||||
"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/Plugins/Plugin_Wiimote_Test/Src",
|
||||
"Source/Core/DolphinWX/Src",
|
||||
'Source/Core/Common/Src',
|
||||
'Externals/Bochs_disasm',
|
||||
'Externals/LZO',
|
||||
'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/Plugins/Plugin_Wiimote_Test/Src',
|
||||
'Source/Core/DolphinWX/Src',
|
||||
]
|
||||
|
||||
builders = {}
|
||||
|
@ -86,8 +86,8 @@ if int(lint):
|
|||
compileFlags += [ '-W' + warning for warning in warnings ]
|
||||
|
||||
env = Environment(
|
||||
CC = "gcc",
|
||||
CXX = "g++",
|
||||
CC = 'gcc',
|
||||
CXX = 'g++',
|
||||
CCFLAGS = ' '.join(compileFlags),
|
||||
CXXFLAGS = ' '.join(compileFlags + [ '-fvisibility-inlines-hidden' ]),
|
||||
CPPPATH = include_paths,
|
||||
|
|
Loading…
Reference in New Issue