Files
dolphin/Source/Plugins/Plugin_PadSimpleEvnt/Src/SConscript
T

25 lines
396 B
Python
Raw Normal View History

# -*- python -*-
2008-12-26 09:20:01 +00:00
Import('env')
import sys
2008-12-26 13:02:18 +00:00
name = "Plugin_PadSimpleEvnt"
2008-12-26 09:20:01 +00:00
2008-12-26 13:02:18 +00:00
if not env['GLTEST']:
print name + " Doesn't work without testgl"
2008-12-26 09:20:01 +00:00
Return()
files = [
"PadSimple.cpp",
]
2008-12-26 13:02:18 +00:00
padeenv = env.Clone()
2008-12-26 09:20:01 +00:00
2008-12-26 13:02:18 +00:00
if padeenv['HAVE_WX']:
files += [
2008-12-30 22:43:45 +00:00
"GUI/ConfigDlg.cpp",
2008-12-26 09:20:01 +00:00
]
2009-01-04 19:54:56 +00:00
padeenv.Append(LIBS = [ 'inputcommon', 'common' ])
2008-12-26 09:20:01 +00:00
2008-12-26 13:02:18 +00:00
padeenv.SharedLibrary(env['plugin_dir']+name, files)