mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Got rid of default Dolphin.ini
Default plugins are now in Paths.h Important note for scons users, plugin names now match the one on windows!!! make sure to remove the old ones!! and update your .ini!! git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1131 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -3,10 +3,7 @@
|
||||
Import('env')
|
||||
import sys
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
output = "../../../../Binary/mac/Plugins/padsimple.so"
|
||||
else:
|
||||
output = "../../../../Binary/linux/Plugins/padsimple.so"
|
||||
name = "Plugin_PadSimple.so"
|
||||
|
||||
files = [
|
||||
"PadSimple.cpp",
|
||||
@ -27,4 +24,4 @@ if padenv['osx64']:
|
||||
LINKFLAGS = [ '-arch', 'x86_64' ],
|
||||
)
|
||||
|
||||
padenv.SharedLibrary(output, files)
|
||||
padenv.SharedLibrary('../../../../'+env['plugin_dir']+name, files)
|
||||
|
Reference in New Issue
Block a user