You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm aiming to create a project with multiple sub-packages using Dub. This seems to work for the most part, except in the case of Linux, I need to manually set LD_LIBRARY_PATH in the command line since the compiled executables don't look in the current directory:
Is there anything I need to change for that to work? Are there any best practices I need to more closely follow? I've pieced this together looking at some other issues here.
I'm aiming to create a project with multiple sub-packages using Dub. This seems to work for the most part, except in the case of Linux, I need to manually set
LD_LIBRARY_PATH
in the command line since the compiled executables don't look in the current directory:D_LIBRARY_PATH="$LD_LIBRARY_PATH:$(pwd)/build" ./build/app
Is there anything I need to change for that to work? Are there any best practices I need to more closely follow? I've pieced this together looking at some other issues here.
dub.json
packages/common/dub.json
packages/app/dub.json
The text was updated successfully, but these errors were encountered: