[DEBUG] correct .hpp port + clean libC include

This commit is contained in:
Edouard DUPIN 2016-10-02 23:47:52 +02:00
parent c4d4ae131e
commit 084e538f3c
5 changed files with 13 additions and 20 deletions

View File

@ -18,5 +18,15 @@ def create(target, module_name):
'exml',
'etk'
])
my_module.add_exclude_symbols([
'*operator<<*',
])
my_module.add_exclude_file([
'debug.hpp',
])
my_module.add_file_patterns([
'*.hpp',
'*.md',
])
return my_module

View File

@ -7,7 +7,7 @@
#include <esvg/debug.hpp>
#include <esvg/Base.hpp>
#include <math.h>
#include <cmath>
const float esvg::kappa90(0.5522847493f);

View File

@ -1,17 +0,0 @@
#!/usr/bin/python
import monkModule as module
import monkTools as tools
def get_desc():
return "e-svg SVG image parser and generator"
def create():
# module name is 'edn' and type binary.
myModule = module.Module(__file__, 'esvg', 'LIBRARY')
# enable doculentation :
myModule.set_website("http://heeroyui.github.io/esvg/")
myModule.set_website_sources("http://github.com/heeroyui/esvg/")
myModule.set_path(tools.get_current_path(__file__) + "/esvg/")
# add the currrent module at the
return myModule

View File

@ -8,7 +8,7 @@
#include <test-debug/debug.hpp>
#include <vector>
#include <gtest/gtest.hpp>
#include <gtest/gtest.h>
#include <etk/etk.hpp>
bool g_visualDebug = false;

View File

@ -7,7 +7,7 @@
*/
#include <gtest/gtest.h>
#include <esvg/esvg.h>
#include <esvg/esvg.hpp>
#include "main.hpp"
TEST(TestGradientLinear, horizontal) {