summaryrefslogtreecommitdiff
path: root/modules/codec
diff options
context:
space:
mode:
authorClaudius 'keldu' Holeksa <mail@keldu.de>2024-09-01 13:24:09 +0200
committerClaudius 'keldu' Holeksa <mail@keldu.de>2024-09-01 13:24:09 +0200
commit55f9635f8818614d1c0e5f2dbfc6eb3de18a7107 (patch)
treeb716810726e9511fc07699e7072092eced2ecd7c /modules/codec
parent636abd840ef43ff5bca30f963d6d1cf28f016cf7 (diff)
Playing around with dependencies.
I need to think about the potential async codec behaviours
Diffstat (limited to 'modules/codec')
-rw-r--r--modules/codec/.nix/derivation.nix1
-rw-r--r--modules/codec/SConstruct3
2 files changed, 1 insertions, 3 deletions
diff --git a/modules/codec/.nix/derivation.nix b/modules/codec/.nix/derivation.nix
index 288db6a..c17d575 100644
--- a/modules/codec/.nix/derivation.nix
+++ b/modules/codec/.nix/derivation.nix
@@ -19,7 +19,6 @@ in stdenv.mkDerivation {
buildInputs = [
forstio.core
- forstio.async
];
nativeBuildInputs = [
diff --git a/modules/codec/SConstruct b/modules/codec/SConstruct
index 6bc28e3..c52aee1 100644
--- a/modules/codec/SConstruct
+++ b/modules/codec/SConstruct
@@ -55,8 +55,7 @@ env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[],
CPPDEFINES=['SAW_UNIX'],
CXXFLAGS=['-std=c++20','-g','-Wall','-Wextra'],
LIBS=[
- 'forstio-core',
- 'forstio-async'
+ 'forstio-core'
]
)
env.__class__.add_source_files = add_kel_source_files