[DEBUG] correct .hpp port + clean libC include

This commit is contained in:
Edouard DUPIN 2016-10-02 23:46:20 +02:00
parent 10dd64890f
commit 390e8a1a1c
4 changed files with 3 additions and 22 deletions

View File

@ -27,7 +27,7 @@ def create(target, module_name):
'debug.hpp', 'debug.hpp',
]) ])
my_module.add_file_patterns([ my_module.add_file_patterns([
'*.h', '*.hpp',
'*.md', '*.md',
]) ])

View File

@ -7,7 +7,7 @@
*/ */
#pragma once #pragma once
#include <eproperty/Range.h> #include <eproperty/Range.hpp>
template<class TYPE> template<class TYPE>

View File

@ -7,7 +7,7 @@
*/ */
#pragma once #pragma once
#include <eproperty/Value.h> #include <eproperty/Value.hpp>
template<class TYPE> template<class TYPE>

View File

@ -1,19 +0,0 @@
#!/usr/bin/python
import monkModule
import monkTools as tools
import os
def get_desc():
return "E-property simple property interface"
def create():
# module name is 'ewol' and type binary.
myModule = monkModule.Module(__file__, 'eproperty', 'LIBRARY')
# enable doculentation :
myModule.set_website("http://atria-soft.github.io/eproperty/")
myModule.set_website_sources("http://github.com/atria-soft/eproperty/")
myModule.set_path(os.path.join(tools.get_current_path(__file__), "eproperty"))
myModule.set_path_general_doc(os.path.join(tools.get_current_path(__file__), "doc"))
# add the currrent module at the
return myModule