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:
nakeee
2008-11-11 20:59:48 +00:00
parent fa1c90a411
commit b47f349c96
15 changed files with 68 additions and 56 deletions

View File

@ -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)