You've already forked openshot-qt
mirror of
https://github.com/OpenShot/openshot-qt.git
synced 2026-03-02 08:56:08 -08:00
This renames the executable created by cx_Freeze from `launch`/`launch.exe` to the value of `info.NAME` (currently `openshot-qt`), plus the appropriate extension (if any), so that a running OpenShot will show up in process listings as "openshot-qt" rather than the generic/suspicious-seeming "launch". It also renames any scripts that call or access `launch.exe`/`launch` to use `openshot-qt.exe`/`openshot-qt` instead.
16 lines
440 B
Batchfile
16 lines
440 B
Batchfile
:: Get the current directory
|
|
SET IMAGE_MAGICK_PATH=%~dp0
|
|
|
|
:: Set some environment variables for ImageMagick
|
|
SET DYLD_LIBRARY_PATH=%IMAGE_MAGICK_PATH%
|
|
SET MAGICK_CONFIGURE_PATH=%IMAGE_MAGICK_PATH%ImageMagick\etc\configuration
|
|
SET MAGICK_CODER_MODULE_PATH=%IMAGE_MAGICK_PATH%ImageMagick\modules-Q16\coders
|
|
|
|
:: Set some debug variables
|
|
SET PATH=%cd%;%PATH%
|
|
SET QT_PLUGIN_PATH=%cd%
|
|
SET QT_DEBUG_PLUGINS=1
|
|
|
|
:: Launch application
|
|
openshot-qt.exe
|