~ubuntu-branches/ubuntu/oneiric/soqt/oneiric

« back to all changes in this revision

Viewing changes to packaging/windows/heading.nsi.in

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2004-05-29 02:58:50 UTC
  • Revision ID: james.westby@ubuntu.com-20040529025850-phd20eva5uyhhdrf
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# **************************************************************************
 
2
# SuperPIMP (NSIS) Configuration File for the SoQt installer.
 
3
# See http://www.nullsoft.com/free/nsis/ for SuperPIMP information.
 
4
# **************************************************************************
 
5
# Authors:
 
6
#   Lars J. Aas <larsa@sim.no>
 
7
 
 
8
Name "SoQt @sdk_version@"
 
9
OutFile "soqt-@sdk_version@-install.exe"
 
10
SilentInstall "normal"
 
11
CRCCheck "on"
 
12
 
 
13
LicenseText "GNU General Public License"
 
14
LicenseData LICENSE.TXT
 
15
 
 
16
ComponentText "Installing the SoQt library"
 
17
InstType "Binary SDK"
 
18
InstType "Run-Time Only"
 
19
InstType "Full"
 
20
 
 
21
DirText "Where to install SoQt"
 
22
InstallDir "D:\Coin3D"
 
23
InstallDirRegKey HKEY_LOCAL_MACHINE SOFTWARE\Coin3D InstallPath
 
24
 
 
25
# **************************************************************************
 
26
Section "Run-Time Library"
 
27
SectionIn 1,2,3
 
28
 
 
29
SetCompress auto
 
30
SetOverwrite on
 
31
 
 
32
SetOutPath $INSTDIR\bin
 
33
File @win_prefix@\bin\soqt@SOQT_MAJOR_VERSION@.dll
 
34
 
 
35
SetOutPath $INSTDIR\html
 
36
File soqt-sdk.html
 
37
 
 
38
SectionEnd
 
39
# **************************************************************************
 
40
Section "Binary SDK"
 
41
SectionIn 1,3
 
42
 
 
43
SetCompress auto
 
44
SetOverwrite on
 
45
 
 
46
SetOutPath $INSTDIR\bin
 
47
File @win_prefix@\bin\soqt@SOQT_MAJOR_VERSION@.dll
 
48
File @win_prefix@\bin\soqt@SOQT_MAJOR_VERSION@d.dll
 
49
File @win_prefix@\bin\soqt@SOQT_MAJOR_VERSION@d.pdb
 
50
 
 
51
SetOutPath $INSTDIR\lib
 
52
File @win_prefix@\lib\soqt@SOQT_MAJOR_VERSION@.lib
 
53
File @win_prefix@\lib\soqt@SOQT_MAJOR_VERSION@d.lib
 
54