mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-06 20:53:31 +01:00
e7f7eff2b6
ulong is not a standard type. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5649 8ced0084-cf51-0410-be5f-012b33b47a6e
26 lines
356 B
Python
26 lines
356 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
name = "Plugin_GCPad"
|
|
padenv = env.Clone()
|
|
|
|
files = [
|
|
'Config.cpp',
|
|
'GCPad.cpp',
|
|
'Rumble.cpp',
|
|
]
|
|
|
|
if padenv['HAVE_WX']:
|
|
files += [
|
|
'ConfigJoypad.cpp',
|
|
'ConfigBox.cpp',
|
|
]
|
|
|
|
padenv.Append(
|
|
LIBS = [ 'inputcommon', 'common', ],
|
|
)
|
|
|
|
padenv.SharedLibrary(env['plugin_dir']+name, files)
|