-
Please, is there any good way how to install or copy binaries (.dll or .so files) to the build directory? These binaries come from: Or is it possible to get the target dependencies pointing to Thank you very much for your help. |
Beta Was this translation helpful? Give feedback.
Answered by
waruqi
Sep 2, 2024
Replies: 1 comment 7 replies
-
run if you debug program, you can run |
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
jfulem
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
run
xmake install -o build
will install them.if you debug program, you can run
xmake run
. it will add PATH to load dll automatically.