summaryrefslogtreecommitdiff
path: root/tests/projects
diff options
context:
space:
mode:
authorruki <[email protected]>2024-11-29 23:50:04 +0800
committerruki <[email protected]>2024-11-29 23:50:04 +0800
commit78f2f9b858a5acede19b35608a193364bda1f738 (patch)
tree15ca822556a635c3aacecf4157e0227a78730d5a /tests/projects
parent603de8819bbc4234a12035f7b9d5748362ec9aa0 (diff)
check verison conflicts
Diffstat (limited to 'tests/projects')
-rw-r--r--tests/projects/package/compatibility/deps_with_version/xmake.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/projects/package/compatibility/deps_with_version/xmake.lua b/tests/projects/package/compatibility/deps_with_version/xmake.lua
index e937c1384..b6ba830c3 100644
--- a/tests/projects/package/compatibility/deps_with_version/xmake.lua
+++ b/tests/projects/package/compatibility/deps_with_version/xmake.lua
@@ -5,11 +5,17 @@ package_end()
package("bar")
add_deps("zlib 1.2.x")
+-- add_deps("libpng dev")
+ on_install(function () end)
+package_end()
+
+package("zoo")
+ add_deps("libpng master")
on_install(function () end)
package_end()
package("test")
- add_deps("foo", "bar")
+ add_deps("foo", "bar", "zoo")
on_install(function () end)
package_end()