2017-08-28 00:02:11 +02:00
|
|
|
#!/usr/bin/python
|
2019-05-03 10:18:22 +02:00
|
|
|
import realog.debug as debug
|
2017-08-28 00:02:11 +02:00
|
|
|
import lutin.tools as tools
|
|
|
|
|
|
|
|
|
|
|
|
def get_type():
|
|
|
|
return "LIBRARY"
|
|
|
|
|
|
|
|
def get_desc():
|
|
|
|
return "Ewol tool kit (base: container)"
|
|
|
|
|
|
|
|
def get_licence():
|
|
|
|
return "MPL-2"
|
|
|
|
|
|
|
|
def get_compagny_type():
|
|
|
|
return "com"
|
|
|
|
|
|
|
|
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_extra_flags()
|
|
|
|
# add the file to compile:
|
|
|
|
my_module.add_src_file([
|
2018-09-06 21:34:06 +02:00
|
|
|
'etk-core/String.cpp',
|
|
|
|
'etk-core/UString.cpp',
|
|
|
|
'etk-core/utf8.cpp',
|
|
|
|
'etk-core/stdTools.cpp',
|
|
|
|
'etk-core/Stream.cpp',
|
|
|
|
'etk-core/Function.cpp',
|
|
|
|
'etk-core/Allocator.cpp',
|
|
|
|
'etk-core/typeInfo.cpp',
|
|
|
|
'etk-core/Exception.cpp',
|
2019-07-26 22:26:21 +02:00
|
|
|
'etk-core/system.cpp',
|
2017-08-28 00:02:11 +02:00
|
|
|
])
|
|
|
|
|
|
|
|
my_module.add_header_file([
|
2018-09-13 22:50:10 +02:00
|
|
|
'etk-core/algorithm.hpp',
|
2018-09-06 21:34:06 +02:00
|
|
|
'etk-core/Allocator.hpp',
|
|
|
|
'etk-core/types.hpp',
|
|
|
|
'etk-core/stdTools.hpp',
|
|
|
|
'etk-core/String.hpp',
|
|
|
|
'etk-core/UString.hpp',
|
|
|
|
'etk-core/utf8.hpp',
|
|
|
|
'etk-core/Array.hpp',
|
|
|
|
'etk-core/Vector.hpp',
|
|
|
|
'etk-core/Stream.hpp',
|
|
|
|
'etk-core/Pair.hpp',
|
|
|
|
'etk-core/Map.hpp',
|
|
|
|
'etk-core/Set.hpp',
|
|
|
|
'etk-core/move.hpp',
|
|
|
|
'etk-core/typeTrait.hpp',
|
|
|
|
'etk-core/Function.hpp',
|
|
|
|
'etk-core/NullPtr.hpp',
|
|
|
|
'etk-core/typeInfo.hpp',
|
2019-07-26 22:26:21 +02:00
|
|
|
'etk-core/Exception.hpp',
|
|
|
|
'etk-core/system.hpp',
|
2018-09-06 21:34:06 +02:00
|
|
|
], 'etk')
|
2017-08-28 00:02:11 +02:00
|
|
|
|
|
|
|
# build in C++ mode
|
2018-08-20 21:29:31 +02:00
|
|
|
my_module.compile_version("c++", 2017)
|
2017-08-28 00:02:11 +02:00
|
|
|
# add dependency of the generic C++ library:
|
|
|
|
my_module.add_depend([
|
|
|
|
'c',
|
2017-08-28 21:39:39 +02:00
|
|
|
'm',
|
|
|
|
"pthread",
|
2017-08-28 00:02:11 +02:00
|
|
|
])
|
2018-10-09 23:06:37 +02:00
|
|
|
"""
|
|
|
|
my_module.add_flag('c++', [
|
|
|
|
"-DETK_MEMORY_CHECKER=2"
|
|
|
|
], export=True)
|
|
|
|
"""
|
2017-08-28 00:02:11 +02:00
|
|
|
if "Android" in target.get_type():
|
|
|
|
my_module.add_depend("SDK")
|
2017-11-22 21:29:52 +01:00
|
|
|
if "MacOs" in target.get_type():
|
2018-09-06 21:34:06 +02:00
|
|
|
my_module.add_depend("cxx")
|
2017-08-28 00:02:11 +02:00
|
|
|
my_module.add_path(".")
|
|
|
|
return True
|
|
|
|
|
|
|
|
|