Fixed build ("file" -> "files"). Made indenting consistent again (tabs or spaces does not matter, but mixing them is evil).

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@953 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Maarten ter Huurne 2008-10-25 11:11:20 +00:00
parent 81a6259fd1
commit 98277aeda0
1 changed files with 8 additions and 8 deletions

View File

@ -14,17 +14,17 @@ files = [
padenv = env.Clone() padenv = env.Clone()
if not padenv['osx64']: if not padenv['osx64']:
file += [ files += [
"GUI/ConfigDlg.cpp", "GUI/ConfigDlg.cpp",
"XInputBase.cpp", "XInputBase.cpp",
] ]
padenv.Append(LIBS = [ 'common' ]) padenv.Append(LIBS = [ 'common' ])
if padenv['osx64']: if padenv['osx64']:
padenv.Append( padenv.Append(
CXXFLAGS = [ '-arch', 'x86_64' ], CXXFLAGS = [ '-arch', 'x86_64' ],
LINKFLAGS = [ '-arch', 'x86_64' ], LINKFLAGS = [ '-arch', 'x86_64' ],
) )
padenv.SharedLibrary(output, files) padenv.SharedLibrary(output, files)