diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-23 20:48:21 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-23 20:48:21 +0200 |
commit | ccd27ef48151c3ab24943e6f0bafde6991f5a476 (patch) | |
tree | 9ce4e5952a43d1f9416f39c9e29ea315ac80410e /c++/SConscript | |
parent | 5a166a02efe011931faa7a9ff9fe4043e3a8017a (diff) |
Working on making cavity code available to everyone else :)
Diffstat (limited to 'c++/SConscript')
-rw-r--r-- | c++/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/SConscript b/c++/SConscript index 57091af..3b79d1a 100644 --- a/c++/SConscript +++ b/c++/SConscript @@ -13,7 +13,7 @@ dir_path = Dir('.').abspath core_env = env.Clone(); core_env.sources = sorted(glob.glob(dir_path + "/*.cpp")); -core_env.headers = sorted(glob.glob(dir_path + "/*.h")); +core_env.headers = sorted(glob.glob(dir_path + "/*.hpp")); env.sources += core_env.sources; env.headers += core_env.headers; |