2008-09-21 19:54:29 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
Import('env')
|
2008-07-31 08:38:13 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
if sys.platform == 'darwin':
|
|
|
|
output = "../../../../Binary/mac/Plugins/padsimple.so"
|
|
|
|
else:
|
|
|
|
output = "../../../../Binary/linux/Plugins/padsimple.so"
|
|
|
|
|
2008-08-26 22:28:42 +00:00
|
|
|
files = [
|
2008-09-23 09:28:37 +00:00
|
|
|
"PadSimple.cpp",
|
2008-10-04 17:26:12 +00:00
|
|
|
"XInputBase.cpp",
|
|
|
|
"GUI/ConfigDlg.cpp",
|
2008-08-26 22:28:42 +00:00
|
|
|
]
|
2008-10-04 17:26:12 +00:00
|
|
|
|
2008-09-16 16:50:09 +00:00
|
|
|
padenv = env.Clone()
|
2008-10-04 17:26:12 +00:00
|
|
|
padenv.Append(LIBS = [ 'common' ])
|
2008-09-23 23:44:26 +00:00
|
|
|
padenv.SharedLibrary(output, files)
|