dolphin/Source/Plugins/Plugin_Wiimote_Test/Src/SConscript
nakeee b47f349c96 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
2008-11-11 20:59:48 +00:00

26 lines
452 B
Python

# -*- python -*-
Import('env')
import sys
name = "Plugin_Wiimote.so"
files = [
"Wiimote.cpp",
]
padenv = env.Clone()
if padenv['osx64']:
padenv.Append(
CXXFLAGS = [ '-arch', 'x86_64' ],
LINKFLAGS = [ '-arch', 'x86_64' ],
LIBS = [ 'common' ],
)
else:
padenv.Append(
CXXFLAGS = [ '-fPIC' ],
LIBS = [ 'common' ],
)
padenv.SharedLibrary('../../../../'+env['plugin_dir']+name, files)