dollar/lutin_dollar-converter.py

38 lines
630 B
Python
Raw Normal View History

2016-08-20 11:01:58 +02:00
#!/usr/bin/python
import lutin.module as module
import lutin.tools as tools
def get_type():
return "BINARY"
def get_sub_type():
return "TOOL"
def get_desc():
return "Dollar converter svg to json and json to SVG"
def get_licence():
return "APACHE-2"
def get_compagny_type():
return "com"
def get_compagny_name():
return "atria-soft"
def get_maintainer():
2016-09-14 21:46:53 +02:00
return "authors.txt"
2016-08-20 11:01:58 +02:00
def create(target, module_name):
my_module = module.Module(__file__, module_name, get_type())
my_module.add_src_file([
'tool/converter/main.cpp'
])
2016-09-08 21:35:02 +02:00
my_module.add_depend([
2016-08-20 11:01:58 +02:00
'dollar',
'test-debug',
])
return my_module