-
Notifications
You must be signed in to change notification settings - Fork 314
Description
Hi all,
I was curious if anyone could guide me through the deployment process for Gamma Ray on Windows. I have done a development install of Gamma Ray by running the following commands listed in the INSTALL.md file:
cmake -G Ninja -DCMAKE_INSTALL_PREFIX=/path/where/to/install ../path/to/gammaray
cmake --build .
cmake --build . --target install
However, when I try to double click the created gammaray-launcher.exe I'm greeted with errors like this:
I'm pretty new to building C++ projects so I'm not exactly sure what the issue is, but I know that the application is not finding the Qt libraries it needs (which I assume should be provided by bundled DLLs?).
I want to make a deployment of Gamma Ray that is fully standalone and that can be run just by double clicking on the executable in the File Explorer.
I found some information about an executable bundled with Qt called windeployqt but I'm not sure if I should be using that to get a standalone deployment of Gamma Ray or if so, how I should go about using it.
