[DEBUG] correct .hpp port + clean libC include

This commit is contained in:
Edouard DUPIN 2016-10-02 23:44:20 +02:00
parent 50e270b5a1
commit 5c41fd08e1
8 changed files with 15 additions and 15 deletions

View File

@ -10,7 +10,7 @@
#include <dollar/tools.hpp> #include <dollar/tools.hpp>
#include <etk/os/FSNode.hpp> #include <etk/os/FSNode.hpp>
#include <math.h> #include <cmath>
#include <algorithm> #include <algorithm>
#define MAX_FLOAT std::numeric_limits<float>::max() #define MAX_FLOAT std::numeric_limits<float>::max()

View File

@ -9,7 +9,7 @@
#include <dollar/Rectangle.hpp> #include <dollar/Rectangle.hpp>
#include <dollar/tools.hpp> #include <dollar/tools.hpp>
#include <etk/os/FSNode.hpp> #include <etk/os/FSNode.hpp>
#include <math.h> #include <cmath>
#include <algorithm> #include <algorithm>
#define MAX_FLOAT std::numeric_limits<float>::max() #define MAX_FLOAT std::numeric_limits<float>::max()

View File

@ -10,7 +10,7 @@
#include <dollar/tools.hpp> #include <dollar/tools.hpp>
#include <etk/os/FSNode.hpp> #include <etk/os/FSNode.hpp>
#include <math.h> #include <cmath>
#include <algorithm> #include <algorithm>
#define MAX_FLOAT std::numeric_limits<float>::max() #define MAX_FLOAT std::numeric_limits<float>::max()

View File

@ -4,13 +4,13 @@
* @license APACHE v2.0 (see license file) * @license APACHE v2.0 (see license file)
*/ */
#include <dollar/debug.h> #include <dollar/debug.hpp>
#include <dollar/GestureP.h> #include <dollar/GestureP.hpp>
#include <dollar/tools.h> #include <dollar/tools.hpp>
#include <etk/os/FSNode.h> #include <etk/os/FSNode.hpp>
#include <ejson/ejson.h> #include <ejson/ejson.hpp>
#include <esvg/esvg.h> #include <esvg/esvg.hpp>
#include <etk/stdTools.h> #include <etk/stdTools.hpp>
dollar::GestureP::GestureP() { dollar::GestureP::GestureP() {

View File

@ -6,7 +6,7 @@
#pragma once #pragma once
#include <etk/math/Vector2D.hpp> #include <etk/math/Vector2D.hpp>
#include <math.h> #include <cmath>
#include <string> #include <string>
#include <list> #include <list>
#include <vector> #include <vector>

View File

@ -5,7 +5,7 @@
*/ */
#pragma once #pragma once
#include <math.h> #include <cmath>
#include <string> #include <string>
#include <list> #include <list>
#include <vector> #include <vector>

View File

@ -7,7 +7,7 @@
#include <dollar/tools.hpp> #include <dollar/tools.hpp>
#include <dollar/debug.hpp> #include <dollar/debug.hpp>
#include <math.h> #include <cmath>
#include <algorithm> #include <algorithm>

View File

@ -25,10 +25,10 @@ def create(target, module_name):
'*operator<<*', '*operator<<*',
]) ])
my_module.add_exclude_file([ my_module.add_exclude_file([
'debug.h', 'debug.hpp',
]) ])
my_module.add_file_patterns([ my_module.add_file_patterns([
'*.h', '*.hpp',
'*.md', '*.md',
]) ])
my_module.add_module_define([ my_module.add_module_define([