2021-06-14 13:42:12 +02:00
|
|
|
#!/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',
|
2024-06-07 09:28:33 +02:00
|
|
|
'src/org/atriasoft/iogami/internal/LOGGER.java',
|
2021-06-14 13:42:12 +02:00
|
|
|
|
|
|
|
])
|
|
|
|
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
|
|
|
|
|