diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-23 16:23:53 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-01-23 16:23:53 +0100 |
commit | 80132c8e221aa5a922496c46e23432685885ba04 (patch) | |
tree | c12774a3fae6837659d925d083328799b7a8b997 /modules/async/c++/SConscript | |
parent | 8dad985328e2183b224300aa992951131956fdb3 (diff) |
modules-all: Renamed every .h file to .hpp
Diffstat (limited to 'modules/async/c++/SConscript')
-rw-r--r-- | modules/async/c++/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/async/c++/SConscript b/modules/async/c++/SConscript index 69f8950..57707c4 100644 --- a/modules/async/c++/SConscript +++ b/modules/async/c++/SConscript @@ -13,7 +13,7 @@ dir_path = Dir('.').abspath async_env = env.Clone(); async_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) -async_env.headers = sorted(glob.glob(dir_path + "/*.h")) +async_env.headers = sorted(glob.glob(dir_path + "/*.hpp")) env.sources += async_env.sources; env.headers += async_env.headers; |