2010-06-03 18:05:08 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
Import('env')
|
|
|
|
import sys
|
|
|
|
|
|
|
|
name = "Plugin_GCPadNew"
|
|
|
|
padenv = env.Clone()
|
|
|
|
|
|
|
|
files = [
|
|
|
|
'GCPadNew.cpp',
|
|
|
|
'GCPadEmu.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
padenv.Append(
|
2010-06-12 20:33:29 +00:00
|
|
|
LIBS = [ 'inputuicommon', 'inputcommon', 'common' ],
|
2010-06-03 18:05:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
padenv.SharedLibrary(env['plugin_dir']+name, files)
|