From 8b3eff8f062966e137a55bd2c9e45f8aa599ed54 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 14 Jun 2021 13:42:12 +0200 Subject: [PATCH] [DEV] add test of lutin builder --- lutin_org-atriasoft-iogami.py | 57 +++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 lutin_org-atriasoft-iogami.py diff --git a/lutin_org-atriasoft-iogami.py b/lutin_org-atriasoft-iogami.py new file mode 100644 index 0000000..a5156b5 --- /dev/null +++ b/lutin_org-atriasoft-iogami.py @@ -0,0 +1,57 @@ +#!/usr/bin/python +import realog.debug as debug +import lutin.tools as tools +import realog.debug as debug +import lutin.image as image +import os +import lutin.multiprocess as lutinMultiprocess + + +def get_type(): + return "LIBRARY_DYNAMIC" + +def get_desc(): + return "Ewol Tool Kit" + +def get_licence(): + return "MPL-2" + +def get_compagny_type(): + return "org" + +def get_compagny_name(): + return "atria-soft" + +#def get_maintainer(): +# return "authors.txt" + +#def get_version(): +# return "version.txt" + +def configure(target, my_module): + + my_module.add_src_file([ + 'src/module-info.java', + 'src/org/atriasoft/iogami/IOgami.java', + 'src/org/atriasoft/iogami/internal/Log.java', + + ]) + my_module.add_path('src/', type='java') + + my_module.add_depend([ + 'org-atriasoft-pngdecoder', + 'org-atriasoft-pngencoder', + 'org-atriasoft-esvg', + 'org-atriasoft-egami', + ]) + + #my_module.add_path([ + # 'lib/spotbugs-annotations-4.2.2.jar' + # ], + # type='java', + # export=True + #); + my_module.add_flag('java', "RELEASE_15_PREVIEW"); + + return True +