summaryrefslogtreecommitdiff
path: root/tests/projects
diff options
context:
space:
mode:
authorSaikari <[email protected]>2026-01-30 06:10:58 +0300
committerSaikari <[email protected]>2026-01-30 06:10:58 +0300
commit72283d163a02abe02d2e53dd44a6050f80b9e956 (patch)
tree41ae7f602316a93d4f88694c033748d09bb1f9d7 /tests/projects
parent83ccf8d991d2ad1ed29af150c35f43d1cdd66663 (diff)
feat: enable shared configuration for zlib dependency in project
Diffstat (limited to 'tests/projects')
-rw-r--r--tests/projects/nim/link_library/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/projects/nim/link_library/xmake.lua b/tests/projects/nim/link_library/xmake.lua
index 3965e4140..46fa1bbe8 100644
--- a/tests/projects/nim/link_library/xmake.lua
+++ b/tests/projects/nim/link_library/xmake.lua
@@ -1,7 +1,7 @@
set_project("link_libs")
add_rules("mode.debug", "mode.release")
-add_requires("zlib", {system = false})
+add_requires("zlib", {system = false, config = {shared = true}})
add_requires("stb", {system = false})
target("headers")