2017-08-28 00:02:11 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
import lutin.debug as debug
|
|
|
|
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([
|
|
|
|
'etk/String.cpp',
|
|
|
|
'etk/UString.cpp',
|
|
|
|
'etk/utf8.cpp',
|
|
|
|
'etk/stdTools.cpp',
|
|
|
|
'etk/Stream.cpp',
|
2017-09-02 23:20:24 +02:00
|
|
|
'etk/Function.cpp',
|
2017-09-05 23:07:32 +02:00
|
|
|
'etk/Allocator.cpp',
|
2017-09-17 00:12:49 +02:00
|
|
|
'etk/typeInfo.cpp',
|
2017-09-26 09:31:47 +02:00
|
|
|
'etk/Exception.cpp',
|
2017-08-28 00:02:11 +02:00
|
|
|
])
|
|
|
|
|
|
|
|
my_module.add_header_file([
|
2017-10-14 12:22:11 +02:00
|
|
|
'etk/Allocator.hpp',
|
2017-08-28 00:02:11 +02:00
|
|
|
'etk/types.hpp',
|
|
|
|
'etk/stdTools.hpp',
|
|
|
|
'etk/Buffer.hpp',
|
|
|
|
'etk/String.hpp',
|
|
|
|
'etk/UString.hpp',
|
|
|
|
'etk/utf8.hpp',
|
|
|
|
'etk/Vector.hpp',
|
|
|
|
'etk/Stream.hpp',
|
|
|
|
'etk/Pair.hpp',
|
|
|
|
'etk/Map.hpp',
|
2017-09-20 01:10:57 +02:00
|
|
|
'etk/Set.hpp',
|
2017-08-29 01:22:26 +02:00
|
|
|
'etk/move.hpp',
|
2017-09-05 23:07:32 +02:00
|
|
|
'etk/typeTrait.hpp',
|
2017-09-02 23:20:24 +02:00
|
|
|
'etk/Function.hpp',
|
2017-09-11 13:27:23 +02:00
|
|
|
'etk/NullPtr.hpp',
|
2017-09-17 00:12:49 +02:00
|
|
|
'etk/typeInfo.hpp',
|
2017-09-26 09:31:47 +02:00
|
|
|
'etk/Exception.hpp',
|
2017-08-28 00:02:11 +02:00
|
|
|
])
|
|
|
|
|
|
|
|
# build in C++ mode
|
|
|
|
my_module.compile_version("c++", 2011)
|
|
|
|
# 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
|
|
|
])
|
|
|
|
|
|
|
|
if "Android" in target.get_type():
|
|
|
|
my_module.add_depend("SDK")
|
|
|
|
|
|
|
|
my_module.add_path(".")
|
|
|
|
return True
|
|
|
|
|
|
|
|
|