[DEV] separate and rename etk-base in etk-core
This commit is contained in:
parent
a38657a915
commit
f75cb4e67f
@ -28,38 +28,38 @@ def configure(target, my_module):
|
|||||||
my_module.add_extra_flags()
|
my_module.add_extra_flags()
|
||||||
# add the file to compile:
|
# add the file to compile:
|
||||||
my_module.add_src_file([
|
my_module.add_src_file([
|
||||||
'etk/String.cpp',
|
'etk-core/String.cpp',
|
||||||
'etk/UString.cpp',
|
'etk-core/UString.cpp',
|
||||||
'etk/utf8.cpp',
|
'etk-core/utf8.cpp',
|
||||||
'etk/stdTools.cpp',
|
'etk-core/stdTools.cpp',
|
||||||
'etk/Stream.cpp',
|
'etk-core/Stream.cpp',
|
||||||
'etk/Function.cpp',
|
'etk-core/Function.cpp',
|
||||||
'etk/Allocator.cpp',
|
'etk-core/Allocator.cpp',
|
||||||
'etk/typeInfo.cpp',
|
'etk-core/typeInfo.cpp',
|
||||||
'etk/Exception.cpp',
|
'etk-core/Exception.cpp',
|
||||||
])
|
])
|
||||||
|
|
||||||
my_module.add_header_file([
|
my_module.add_header_file([
|
||||||
'etk/Allocator.hpp',
|
'etk-core/Allocator.hpp',
|
||||||
'etk/types.hpp',
|
'etk-core/types.hpp',
|
||||||
'etk/stdTools.hpp',
|
'etk-core/stdTools.hpp',
|
||||||
'etk/Buffer.hpp',
|
'etk-core/Buffer.hpp',
|
||||||
'etk/String.hpp',
|
'etk-core/String.hpp',
|
||||||
'etk/UString.hpp',
|
'etk-core/UString.hpp',
|
||||||
'etk/utf8.hpp',
|
'etk-core/utf8.hpp',
|
||||||
'etk/Array.hpp',
|
'etk-core/Array.hpp',
|
||||||
'etk/Vector.hpp',
|
'etk-core/Vector.hpp',
|
||||||
'etk/Stream.hpp',
|
'etk-core/Stream.hpp',
|
||||||
'etk/Pair.hpp',
|
'etk-core/Pair.hpp',
|
||||||
'etk/Map.hpp',
|
'etk-core/Map.hpp',
|
||||||
'etk/Set.hpp',
|
'etk-core/Set.hpp',
|
||||||
'etk/move.hpp',
|
'etk-core/move.hpp',
|
||||||
'etk/typeTrait.hpp',
|
'etk-core/typeTrait.hpp',
|
||||||
'etk/Function.hpp',
|
'etk-core/Function.hpp',
|
||||||
'etk/NullPtr.hpp',
|
'etk-core/NullPtr.hpp',
|
||||||
'etk/typeInfo.hpp',
|
'etk-core/typeInfo.hpp',
|
||||||
'etk/Exception.hpp'
|
'etk-core/Exception.hpp'
|
||||||
])
|
], 'etk')
|
||||||
|
|
||||||
# build in C++ mode
|
# build in C++ mode
|
||||||
my_module.compile_version("c++", 2017)
|
my_module.compile_version("c++", 2017)
|
Loading…
x
Reference in New Issue
Block a user