fork of capisuite (https://github.com/larsimmisch/capisuite) with some fixes to make it build on modern Linux
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
762 B
26 lines
762 B
# -*- python -*-
|
|
|
|
Import('env')
|
|
env.Append(capisuite_sources = Dir('.'))
|
|
|
|
SConscript('capisuite-py/SConscript')
|
|
libmodule = SConscript('modules/SConscript')
|
|
libappl = SConscript('application/SConscript')
|
|
libback = SConscript('backend/SConscript')
|
|
|
|
env.ExtraDist(Split("""
|
|
capisuite-py/SConscript
|
|
modules/SConscript
|
|
application/SConscript
|
|
backend/SConscript
|
|
"""))
|
|
|
|
capisuite = env.Program('capisuite',
|
|
['main.cpp', libappl, libmodule, libback])
|
|
#env.AddPostAction(capisuite, 'strip $TARGET')
|
|
|
|
capisuite_conf = env.FileSubst('capisuite.conf', 'capisuite.conf.in')
|
|
|
|
# -- install --
|
|
env.Alias('install-exec', env.Install('$sbindir', capisuite))
|
|
env.Alias('install', env.Install('$pkgsysconfdir', capisuite_conf))
|
|
|