zeus/tools/server-remote/lutin_zeus-server-remote.py

52 lines
998 B
Python

#!/usr/bin/python
import lutin.tools as tools
import lutin.debug as debug
import os
import lutinLib_ffmpegCommon
def get_type():
#return "BINARY_SHARED"
return "BINARY"
def get_desc():
return "zeus server remote"
def get_licence():
return "GPL-3"
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):
# add the file to compile:
my_module.add_src_file([
'appl/debug.cpp',
'appl/Main.cpp',
'appl/Windows.cpp',
'appl/ClientProperty.cpp',
'appl/widget/Connection.cpp',
])
my_module.add_depend([
'ewol',
'zeus',
'zeus-service-server',
])
my_module.add_flag('c++', [
"-DPROJECT_NAME=\"\\\""+my_module.get_name()+"\\\"\"",
"-DAPPL_VERSION=\"\\\"" + tools.version_to_string(get_version()) + "\\\"\"",
])
my_module.copy_path('data/*')
my_module.add_path(".")
return True