summaryrefslogtreecommitdiff
path: root/modules/crypto/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'modules/crypto/SConstruct')
-rw-r--r--modules/crypto/SConstruct6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/crypto/SConstruct b/modules/crypto/SConstruct
index f71db5a..a2b6f96 100644
--- a/modules/crypto/SConstruct
+++ b/modules/crypto/SConstruct
@@ -46,7 +46,11 @@ env_vars.Add('prefix',
env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[],
CPPDEFINES=['SAW_UNIX'],
CXXFLAGS=['-std=c++20','-g','-Wall','-Wextra'],
- LIBS=['forstio-core'])
+ LIBS=[
+ 'forstio-core'
+ ,'argon2'
+ ]
+)
env.__class__.add_source_files = add_kel_source_files
env.Tool('compilation_db');
env.cdb = env.CompilationDatabase('compile_commands.json');