30 lines
478 B
Python
30 lines
478 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
import sys
|
|
|
|
name = "Plugin_PadSimple"
|
|
|
|
if not env['HAVE_X11']:
|
|
print name + " must have X11 to be built"
|
|
Return()
|
|
|
|
if env['GLTEST']:
|
|
print name + " Doesn't work with testgl"
|
|
Return()
|
|
|
|
files = [
|
|
"PadSimple.cpp",
|
|
]
|
|
padenv = env.Clone()
|
|
|
|
if padenv['HAVE_WX']:
|
|
files += [
|
|
"GUI/ConfigDlg.cpp",
|
|
"XInputBase.cpp",
|
|
]
|
|
|
|
padenv.Append(LIBS = [ 'common' ])
|
|
|
|
padenv.SharedLibrary(env['plugin_dir']+name, files)
|