diff options
| author | NeoBrainX <NeoBrainX@googlemail.com> | 2010-11-13 19:36:33 +0000 |
|---|---|---|
| committer | NeoBrainX <NeoBrainX@googlemail.com> | 2010-11-13 19:36:33 +0000 |
| commit | e79fcce1d48e0101697b75e03b975b6cb4557e0d (patch) | |
| tree | 2c2c077189709a6568c07131dfe4b8ec1aa5c033 /Source | |
| parent | 7ad7acd248e73dfa60f28767dc6373c5df571ccd (diff) | |
Fix compiling wiiuse on with CMake and SCons
Also fix confusing formatting in a SConscript file
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6395 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinWX/Src/SConscript | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Source/Core/DolphinWX/Src/SConscript b/Source/Core/DolphinWX/Src/SConscript index bdad6a7958..4d5dac0b9f 100644 --- a/Source/Core/DolphinWX/Src/SConscript +++ b/Source/Core/DolphinWX/Src/SConscript @@ -97,11 +97,12 @@ elif sys.platform == 'darwin' and env['HAVE_WX']: env.Fixup(exeGUIdist, exeGUI) else: files += [ 'X11Utils.cpp' ] - libs += [ 'SDL' ] - exeGUI = env['binary_dir'] + '/dolphin-emu' - exeNoGUI = env['binary_dir'] + '/dolphin-emu-nogui' - env.InstallAs(env['data_dir'] + '/sys', '#Data/Sys') - env.InstallAs(env['data_dir'] + '/user', '#Data/User') + +libs += [ 'SDL' ] +exeGUI = env['binary_dir'] + '/dolphin-emu' +exeNoGUI = env['binary_dir'] + '/dolphin-emu-nogui' +env.InstallAs(env['data_dir'] + '/sys', '#Data/Sys') +env.InstallAs(env['data_dir'] + '/user', '#Data/User') if env['HAVE_WX']: env.Program(exeGUI, files, LIBS = wxlibs + libs + env['LIBS']) |
