45 lines
839 B
Python
45 lines
839 B
Python
#!/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 "Scenarium logger"
|
|
|
|
def get_licence():
|
|
return "MPL-2"
|
|
|
|
def get_compagny_type():
|
|
return "com"
|
|
|
|
def get_compagny_name():
|
|
return "scenarium"
|
|
|
|
#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/io/scenarium/logger/LogLevel.java',
|
|
'src/io/scenarium/logger/Logger.java',
|
|
'src/io/scenarium/logger/internal/Log.java',
|
|
])
|
|
my_module.add_path('src/', type='java')
|
|
|
|
my_module.add_flag('java', "RELEASE_15_PREVIEW");
|
|
|
|
return True
|
|
|