mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00: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:
parent
fa1c90a411
commit
b47f349c96
15 changed files with 68 additions and 56 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue