Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

61 righe
2.5 KiB

  1. ; Setup script for use with Inno Setup.
  2. [Setup]
  3. AppName=Open Asset Import Library - Viewer
  4. AppVerName=Open Asset Import Library - Viewer (v2.0)
  5. DefaultDirName={pf}\AssimpView
  6. DefaultGroupName=AssimpView
  7. UninstallDisplayIcon={app}\bin\x86\assimp.exe
  8. OutputDir=out_vieweronly
  9. AppCopyright=Assimp Development Team
  10. SetupIconFile=..\..\tools\shared\assimp_tools_icon.ico
  11. WizardImageFile=compiler:WizModernImage-IS.BMP
  12. WizardSmallImageFile=compiler:WizModernSmallImage-IS.BMP
  13. LicenseFile=License.rtf
  14. OutputBaseFileName=assimp-view-2.0-setup
  15. VersionInfoVersion=2.0.0.0
  16. VersionInfoTextVersion=2.0
  17. VersionInfoCompany=Assimp Development Team
  18. ArchitecturesInstallIn64BitMode=x64
  19. [Run]
  20. Filename: "{app}\stub\vcredist_x86.exe"; Parameters: "/qb"; StatusMsg: "Installing VS2008 SP1 redistributable package (32 Bit)"; Check: not IsWin64
  21. Filename: "{app}\stub\vcredist_x64.exe"; Parameters: "/qb"; StatusMsg: "Installing VS2008 SP1 redistributable package (64 Bit)"; Check: IsWin64
  22. [Files]
  23. Source: "readme_installer_vieweronly.txt"; DestDir: "{app}"; Flags: isreadme
  24. ; Installer stub
  25. Source: "vcredist_x86.exe"; DestDir: "{app}\stub\"; Check: not IsWin64
  26. Source: "vcredist_x64.exe"; DestDir: "{app}\stub\"; Check: IsWin64
  27. ; Common stuff
  28. Source: "..\..\CREDITS"; DestDir: "{app}"
  29. Source: "..\..\LICENSE"; DestDir: "{app}"
  30. Source: "..\..\README"; DestDir: "{app}"
  31. Source: "WEB"; DestDir: "{app}"
  32. ; x86 binaries
  33. Source: "..\..\bin\assimp_release-dll_Win32\Assimp32.dll"; DestDir: "{app}\bin\x86"
  34. Source: "..\..\bin\assimpview_release-dll_Win32\assimp_view.exe"; DestDir: "{app}\bin\x86"
  35. Source: "D3DCompiler_42.dll"; DestDir: "{app}\bin\x86"
  36. Source: "D3DX9_42.dll"; DestDir: "{app}\bin\x86"
  37. Source: "..\..\bin\assimpcmd_release-dll_Win32\assimp.exe"; DestDir: "{app}\bin\x86"
  38. ; x64 binaries
  39. Source: "..\..\bin\assimp_release-dll_x64\Assimp64.dll"; DestDir: "{app}\bin\x64"
  40. Source: "..\..\bin\assimpview_release-dll_x64\assimp_view.exe"; DestDir: "{app}\bin\x64"
  41. Source: "D3DCompiler_42_x64.dll"; DestDir: "{app}\bin\x64"; DestName: "D3DCompiler_42.dll"
  42. Source: "D3DX9_42_x64.dll"; DestDir: "{app}\bin\x64"; DestName: "D3DX9_42.dll"
  43. Source: "..\..\bin\assimpcmd_release-dll_x64\assimp.exe"; DestDir: "{app}\bin\x64"
  44. ; Documentation
  45. Source: "..\..\doc\AssimpCmdDoc_Html\AssimpCmdDoc.chm"; DestDir: "{app}\doc"
  46. [Icons]
  47. Name: "{group}\Assimp Command Line Manual"; Filename: "{app}\doc\AssimpCmdDoc.chm"
  48. Name: "{group}\AssimpView"; Filename: "{app}\bin\x64\assimp_view.exe"; Check: IsWin64
  49. Name: "{group}\AssimpView"; Filename: "{app}\bin\x86\assimp_view.exe"; Check: not IsWin64