How to properly setup a dependency using a shared library? #11684
Unanswered
MGilleronFJ
asked this question in
Q&A
Replies: 1 comment 4 replies
-
Running (You'll still need to handle packaging in something like a .MSI installer, yourself.) |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I wrote a simple project depending on SDL2:
I downloaded SDL2 from WrapDB as shown in the tutorial. The only difference is I didn't define
default_library=static
, as I would prefer to use a dynamic library.The build succeeds, however the executable inside the build directory is unable to run because it can't find
SDL2.dll
. Is there something else I need to do for dynamic libraries to be placed next to the executable so I can run/debug the executable during development?Beta Was this translation helpful? Give feedback.
All reactions