ruki
ruki
add_packages 要跟 add_requires 的包名一致 `add_packages("vcpkg::opencv[contrib,freetype]")`,否则关联不上。。如果你 add_packages 不想写这么长,那就设置 alias ```lua add_requires("vcpkg::opencv[contrib,freetype]", {alias = "opencv"}) ```
那就自己调下这里,https://github.com/xmake-io/xmake/blob/dev/xmake/modules/package/manager/vcpkg/find_package.lua fetch 没找到安装后的包而已。
那这种目前解析不了,先得确认库和头文件路径在哪。啥也没有 就没办法了。。 所以建议用 xmake-repo 的 opencv 包
只有 xmake-repo 仓库的包才支持级联依赖。。三方包不支持
你不需要设置任何 launch.json 。。都是自动的,插件内部会自动生成 launch.json ,自动调用。。 点底下工具栏的 运行和调试按钮,不要点侧边栏的。
动态库调试,目前不支持。
最近没空 太忙了,你可以尝试自己提个 pr 过来
This is because you updated the ndk version, but the latest ndk r26b does a lot of updates that break some libraries. It will take a lot of time to...
这个算是 ok 了么
> expected: > > ```lua > target("antlr4-lua") > set_kind("static") > add_files("g4/LuaLexer.g4", {rules = "@antlr4/lexer"}) > add_files("g4/LuaParser.g4", {rules = "@antlr4/parser"}) > -- add_rules("@antlr4/lexer") > -- add_rules("@antlr4/parser") > > add_includedirs(".") > >...