aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/nsis/hello.nsi
blob: 70b73056a6b1d7073a242807c671ef88e28e37e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SetCompressor zlib

!ifdef Win64
    Name "Qbs Hello - ${qbs.architecture} (64-bit)"
!else
    Name "Qbs Hello - ${qbs.architecture} (32-bit)"
!endif

OutFile "you-should-not-see-a-file-with-this-name.exe"
InstallDir "$DESKTOP\Qbs Hello"
RequestExecutionLevel user

Page directory
Page instfiles

Section ""
    SetOutPath "$INSTDIR"
    File "${batchFile}"
SectionEnd