Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ jobs:
with:
version: ${{ env.GST_VERSION }}

- name: Install NSIS
run: choco install nsis -y
shell: powershell

- name: Setup Caching
uses: ./.github/actions/cache
with:
Expand Down
1 change: 1 addition & 0 deletions cmake/CreateWinInstaller.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ set(_PF86 "PROGRAMFILES(x86)")
find_program(QGC_NSIS_INSTALLER_CMD makensis
PATHS "$ENV{PROGRAMFILES}/NSIS" "$ENV{${_PF86}}/NSIS" "$ENV{PROGRAMW6432}/NSIS"
DOC "Path to the makensis utility."
REQUIRED
)

file(TO_NATIVE_PATH "${QGC_WINDOWS_ICON_PATH}" QGC_INSTALLER_ICON)
Expand Down
Loading