mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
more scons build fixups
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2960 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -18,4 +18,4 @@ if acenv['HAVE_OPENAL']:
|
||||
if acenv['HAVE_AO']:
|
||||
files += [ 'AOSoundStream.cpp' ]
|
||||
|
||||
acenv.StaticLibrary('audiocommon', files)
|
||||
acenv.StaticLibrary(env['local_libs'] + 'audiocommon', files)
|
||||
|
@ -42,4 +42,4 @@ if sys.platform == 'win32':
|
||||
|
||||
env_common = env.Clone()
|
||||
env_common.Append(CXXFLAGS = [ '-fPIC' ])
|
||||
env_common.StaticLibrary("common", files)
|
||||
env_common.StaticLibrary(env['local_libs'] + "common", files)
|
||||
|
@ -129,4 +129,4 @@ libs = [
|
||||
]
|
||||
|
||||
env_core = env.Clone();
|
||||
env_core.StaticLibrary('core', files, LIBS=libs)
|
||||
env_core.StaticLibrary(env['local_libs'] + 'core', files, LIBS=libs)
|
||||
|
@ -3,22 +3,24 @@
|
||||
Import('env')
|
||||
|
||||
files = [
|
||||
"disassemble.cpp",
|
||||
"gdsp_aram.cpp",
|
||||
"gdsp_condition_codes.cpp",
|
||||
"gdsp_ext_op.cpp",
|
||||
"gdsp_interface.cpp",
|
||||
"gdsp_interpreter.cpp",
|
||||
"gdsp_memory.cpp",
|
||||
"gdsp_registers.cpp",
|
||||
"DSPAnalyzer.cpp",
|
||||
"DSPInterpreter.cpp",
|
||||
"DSPJit.cpp",
|
||||
# "DSPHost.cpp",
|
||||
"DSPTables.cpp",
|
||||
"assemble.cpp",
|
||||
"disassemble.cpp",
|
||||
"gdsp_aram.cpp",
|
||||
"gdsp_condition_codes.cpp",
|
||||
"gdsp_ext_op.cpp",
|
||||
"gdsp_interface.cpp",
|
||||
"gdsp_interpreter.cpp",
|
||||
"gdsp_memory.cpp",
|
||||
"gdsp_registers.cpp",
|
||||
"DSPAnalyzer.cpp",
|
||||
"DSPInterpreter.cpp",
|
||||
"DSPJit.cpp",
|
||||
"DSPCodeUtil.cpp",
|
||||
# "DSPHost.cpp",
|
||||
"DSPTables.cpp",
|
||||
]
|
||||
|
||||
acenv = env.Clone()
|
||||
acenv.Append(CXXFLAGS = [ '-fPIC' ])
|
||||
|
||||
acenv.StaticLibrary('dspcore', files)
|
||||
acenv.StaticLibrary(env['local_libs'] + 'dspcore', files, LIBS = [ 'common'] )
|
||||
|
@ -34,4 +34,4 @@ libs = [
|
||||
'common'
|
||||
]
|
||||
|
||||
wxenv.StaticLibrary("debwx", files, LIBS = libs)
|
||||
wxenv.StaticLibrary(env['local_libs'] + "debwx", files, LIBS = libs)
|
||||
|
@ -24,4 +24,4 @@ files = [
|
||||
libs = [
|
||||
'common'
|
||||
]
|
||||
env.StaticLibrary('discio', files, LIBS = libs)
|
||||
env.StaticLibrary(env['local_libs'] + 'discio', files, LIBS = libs)
|
||||
|
@ -11,4 +11,4 @@ files = [
|
||||
|
||||
env_inputcommon = env.Clone()
|
||||
env_inputcommon.Append(CXXFLAGS = [ '-fPIC' ])
|
||||
env_inputcommon.StaticLibrary("inputcommon", files)
|
||||
env_inputcommon.StaticLibrary(env['local_libs'] + "inputcommon", files)
|
||||
|
@ -34,4 +34,4 @@ files = [
|
||||
|
||||
env_common = env.Clone()
|
||||
env_common.Append(CXXFLAGS = [ '-fPIC' ])
|
||||
env_common.StaticLibrary("videocommon", files)
|
||||
env_common.StaticLibrary(env['local_libs'] + "videocommon", files)
|
||||
|
Reference in New Issue
Block a user