2010-04-01 05:59:40 +03:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
Import('env')
|
|
|
|
import sys
|
|
|
|
|
|
|
|
name = "Plugin_GCPadNew"
|
|
|
|
padenv = env.Clone()
|
|
|
|
|
|
|
|
files = [
|
|
|
|
'GCPadNew.cpp',
|
2010-04-13 09:09:45 +03:00
|
|
|
'GCPadEmu.cpp',
|
2010-04-09 01:09:52 +03:00
|
|
|
]
|
2010-04-01 05:59:40 +03:00
|
|
|
|
|
|
|
padenv.Append(
|
2010-04-13 09:09:45 +03:00
|
|
|
LIBS = [ 'inputplugincommon', 'inputcommon', 'common' ],
|
2010-04-01 05:59:40 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
if sys.platform == 'darwin':
|
2010-04-23 22:15:44 +03:00
|
|
|
padenv['FRAMEWORKS'] = ['CoreFoundation', 'System', 'Cocoa', 'IOKit' ]
|
2010-04-01 05:59:40 +03:00
|
|
|
|
|
|
|
padenv.SharedLibrary(env['plugin_dir']+name, files)
|