[DEV] add test of lutin builder
This commit is contained in:
parent
6a90749d4d
commit
35b0fcd3a8
@ -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>
|
||||||
|
64
lutin_org-atriasoft-egami.py
Normal file
64
lutin_org-atriasoft-egami.py
Normal 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
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user