diff options
| author | ruki <[email protected]> | 2024-12-01 22:20:21 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-12-01 22:20:21 +0800 |
| commit | df467da416ce72c90a79eb106673bb0f13ef7197 (patch) | |
| tree | f55a721eb8ec6c60138e475b214c01af68e072bc /tests | |
| parent | ce6f7dbd1350ba83c88c55b7ca170ae97bc54764 (diff) | |
merge configs
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/projects/package/compatibility/deps_with_version/xmake.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/package/compatibility/deps_with_version/xmake.lua b/tests/projects/package/compatibility/deps_with_version/xmake.lua index 1ceb5f3a1..89a388cb1 100644 --- a/tests/projects/package/compatibility/deps_with_version/xmake.lua +++ b/tests/projects/package/compatibility/deps_with_version/xmake.lua @@ -7,14 +7,14 @@ package_end() package("bar") add_deps("zlib 1.2.x") -- add_deps("libpng dev") --- add_deps("libpng", {configs = {debug = true}}) + add_deps("libpng", {configs = {shared = false}}) set_policy("package.install_locally", true) on_install(function () end) package_end() package("zoo") -- add_deps("libpng master") --- add_deps("libpng", {configs = {shared = true}}) + add_deps("libpng", {configs = {shared = true}}) set_policy("package.install_locally", true) on_install(function () end) package_end() |
