diff options
author | Qyriad <qyriad@qyriad.me> | 2024-06-01 19:17:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@lix-systems> | 2024-06-01 19:17:13 +0000 |
commit | d374a9908f8f92e479c736a160ef90af6df4ca94 (patch) | |
tree | 55020ae4d9c9aa6855b177a648e9bf88147e1826 /tests | |
parent | b8cb7abcf08be01a291c970164a3f44dfca0ddbf (diff) | |
parent | e54d4c9381492d44a69469a0e719fea50e9914f3 (diff) |
Merge "build: fix static linking with a hack" into main
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/meson.build | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/unit/meson.build b/tests/unit/meson.build index d8d4a00d1..06aff4626 100644 --- a/tests/unit/meson.build +++ b/tests/unit/meson.build @@ -64,7 +64,7 @@ libutil_tester = executable( gtest, boehm, liblixutil, - liblixexpr, + liblixexpr_mstatic, liblixutil_test_support, nlohmann_json, ], @@ -131,7 +131,7 @@ libstore_tester = executable( dependencies : [ liblixstore_test_support, liblixutil_test_support, - liblixstore, + liblixstore_mstatic, liblixutil, rapidcheck, gtest, @@ -194,10 +194,10 @@ libexpr_tester = executable( dependencies : [ liblixexpr_test_support, liblixstore_test_support, - liblixstore, + liblixstore_mstatic, liblixutil, - liblixexpr, - liblixfetchers, + liblixexpr_mstatic, + liblixfetchers_mstatic, rapidcheck, boehm, gtest, @@ -225,8 +225,8 @@ libcmd_tester = executable( liblixcmd, liblixutil, liblixmain, - liblixexpr, - liblixstore, + liblixexpr_mstatic, + liblixstore_mstatic, gtest, boost, ], |