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-08-26 22:28:42 +00:00
|
|
|
]
|
2008-10-04 07:57:28 +00:00
|
|
|
if not env['nowx']:
|
2008-10-04 08:27:56 +00:00
|
|
|
files += ["GUI/ConfigDlg.cpp", "XInputBase.cpp",]
|
2008-09-16 16:50:09 +00:00
|
|
|
padenv = env.Clone()
|
2008-10-04 07:57:28 +00:00
|
|
|
padenv.Append(LIBS = [ 'common', 'X11' ])
|
2008-09-23 23:44:26 +00:00
|
|
|
padenv.SharedLibrary(output, files)
|