This is an automated email from the ASF dual-hosted git repository. ardovm pushed a commit to branch scons-build in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit 1bf33554f3d7b53d60c2fe7555f9d4515e65bcad Author: Arrigo Marchiori <[email protected]> AuthorDate: Sun Apr 2 12:46:26 2023 +0200 Tentative SConscript for xml2cmp --- main/xml2cmp/SConscript | 60 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/main/xml2cmp/SConscript b/main/xml2cmp/SConscript new file mode 100644 index 0000000000..123962689c --- /dev/null +++ b/main/xml2cmp/SConscript @@ -0,0 +1,60 @@ +xml2cmpObjects = AOOSharedObjects() +xml2cmpObjects.AddInclude([ + 'source/inc', + 'source/support', + 'source/xcd' +]) +xml2cmpObjects.AddCxxExceptionSources([ + 'source/xcd/cr_html.cxx', + 'source/xcd/cr_index.cxx', + 'source/xcd/cr_metho.cxx', + 'source/xcd/filebuff.cxx', + 'source/xcd/parse.cxx', + 'source/xcd/xmlelem.cxx', + 'source/xcd/xmltree.cxx', + 'source/xcd/main.cxx', + 'source/support/cmdline.cxx', + 'source/support/heap.cxx', + 'source/support/sistr.cxx', + 'source/support/syshelp.cxx', + 'source/support/badcast.cxx' +]) +xml2cmpExecutable = AOOExecutable( + 'xml2cmp', + 'NONE', + xml2cmpObjects +) +xml2cmpExecutable.AddLinkedLibs([ + STDLIBS # TODO: excluding uwinapi +]) + +srvdepyObjects = AOOSharedObjects() +srvdepyObjects.AddInclude([ + 'source/inc', + 'source/support', + 'source/xcd' +]) +srvdepyObjects.AddCxxExceptionSources([ + 'source/finder/dependy.cxx', + 'source/finder/dep_main.cxx', + 'source/xcd/cr_html.cxx', + 'source/xcd/cr_index.cxx', + 'source/xcd/cr_metho.cxx', + 'source/xcd/filebuff.cxx', + 'source/xcd/parse.cxx', + 'source/xcd/xmlelem.cxx', + 'source/xcd/xmltree.cxx', + 'source/support/cmdline.cxx', + 'source/support/heap.cxx', + 'source/support/sistr.cxx', + 'source/support/syshelp.cxx', + 'source/support/badcast.cxx', +]) +srvdepyExecutable = AOOExecutable( + 'srvdepy', + 'NONE', + srvdepyObjects +) +srvdepyExecutable.AddLinkedLibs([ + STDLIBS # TODO: excluding uwinapi +])
