[DEV] add test of lutin builder

This commit is contained in:
Edouard DUPIN 2021-06-14 13:42:50 +02:00
parent 6a90749d4d
commit 35b0fcd3a8
2 changed files with 70 additions and 1 deletions

View File

@ -15,12 +15,17 @@
<attribute name="test" value="true"/> <attribute name="test" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry combineaccessrules="false" exported="true" kind="src" path="/scenarium-logger">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry combineaccessrules="false" exported="true" kind="src" path="/atriasoft-etk"> <classpathentry combineaccessrules="false" exported="true" kind="src" path="/atriasoft-etk">
<attributes> <attributes>
<attribute name="module" value="true"/> <attribute name="module" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry combineaccessrules="false" exported="true" kind="src" path="/scenarium-logger"> <classpathentry combineaccessrules="false" kind="src" path="/atriasoft-png-decoder">
<attributes> <attributes>
<attribute name="module" value="true"/> <attribute name="module" value="true"/>
</attributes> </attributes>

View File

@ -0,0 +1,64 @@
#!/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/egami/ImageByteMono.java',
'src/org/atriasoft/egami/ImageFloatMono.java',
'src/org/atriasoft/egami/ImageByte.java',
'src/org/atriasoft/egami/ImageFloatRGB.java',
'src/org/atriasoft/egami/ImageByteRGB.java',
'src/org/atriasoft/egami/internal/Log.java',
'src/org/atriasoft/egami/ImageFloat.java',
'src/org/atriasoft/egami/Image.java',
'src/org/atriasoft/egami/ImageType.java',
'src/org/atriasoft/egami/Egami.java',
'src/org/atriasoft/egami/ImageByteRGBA.java',
'src/org/atriasoft/egami/ToolImage.java',
'src/org/atriasoft/egami/ImageFloatRGBA.java',
])
my_module.add_path('src/', type='java')
my_module.add_depend([
'org-atriasoft-etk'
])
#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