diff options
Diffstat (limited to 'modules/tools')
-rw-r--r-- | modules/tools/SConscript | 2 | ||||
-rw-r--r-- | modules/tools/c_gen_iface.hpp | 8 | ||||
-rw-r--r-- | modules/tools/cli_analyzer.hpp | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/modules/tools/SConscript b/modules/tools/SConscript index 7c9efd7..9b1ad89 100644 --- a/modules/tools/SConscript +++ b/modules/tools/SConscript @@ -13,7 +13,7 @@ dir_path = Dir('.').abspath tools_env = env.Clone(); tools_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) -tools_env.headers = sorted(glob.glob(dir_path + "/*.h")) +tools_env.headers = sorted(glob.glob(dir_path + "/*.hpp")) env.sources += tools_env.sources; env.headers += tools_env.headers; diff --git a/modules/tools/c_gen_iface.hpp b/modules/tools/c_gen_iface.hpp index 8bdbca9..f9ff219 100644 --- a/modules/tools/c_gen_iface.hpp +++ b/modules/tools/c_gen_iface.hpp @@ -1,6 +1,6 @@ -#include <forstio/error.h> -#include <forstio/templates.h> -#include <forstio/codec/schema.h> +#include <forstio/error.hpp> +#include <forstio/templates.hpp> +#include <forstio/codec/schema.hpp> #include <string> #include <sstream> @@ -8,7 +8,7 @@ #include <iostream> -#include <forstio/codec/schema_stringify.h> +#include <forstio/codec/schema_stringify.hpp> namespace saw { diff --git a/modules/tools/cli_analyzer.hpp b/modules/tools/cli_analyzer.hpp index 7f3f013..402f03c 100644 --- a/modules/tools/cli_analyzer.hpp +++ b/modules/tools/cli_analyzer.hpp @@ -1,6 +1,6 @@ #pragma once -#include <forstio/codec/schema.h> +#include <forstio/codec/schema.hpp> #include <iostream> |