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