mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Mac plugin is now in mac/Plugins directory
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@113 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
Import('env')
|
||||
import sys
|
||||
|
||||
files = ["DSPHandler.cpp",
|
||||
"MailHandler.cpp",
|
||||
@ -16,4 +17,8 @@ files = ["DSPHandler.cpp",
|
||||
"UCodes/UCode_Zelda.cpp",
|
||||
]
|
||||
dspenv=env.Copy(LINKFLAGS = "`pkg-config --libs ao` ")
|
||||
dspenv.SharedLibrary("../../../../Binary/linux/Plugins/dsphle.so", files, LIBS = ["common"])
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
dspenv.SharedLibrary("../../../../Binary/mac/Plugins/dsphle.so", files, LIBS = ["common"])
|
||||
else:
|
||||
dspenv.SharedLibrary("../../../../Binary/linux/Plugins/dsphle.so", files, LIBS = ["common"])
|
||||
|
Reference in New Issue
Block a user