summaryrefslogtreecommitdiff
path: root/libs/assimp/packaging/windows-innosetup
diff options
context:
space:
mode:
Diffstat (limited to 'libs/assimp/packaging/windows-innosetup')
-rw-r--r--libs/assimp/packaging/windows-innosetup/LICENSE.rtfbin0 -> 2260 bytes
-rw-r--r--libs/assimp/packaging/windows-innosetup/WEB6
-rw-r--r--libs/assimp/packaging/windows-innosetup/howto-build-setup.txt16
-rw-r--r--libs/assimp/packaging/windows-innosetup/readme_installer.txt23
-rw-r--r--libs/assimp/packaging/windows-innosetup/readme_installer_vieweronly.txt32
-rw-r--r--libs/assimp/packaging/windows-innosetup/script_vieweronly.iss60
-rw-r--r--libs/assimp/packaging/windows-innosetup/script_x64.iss74
-rw-r--r--libs/assimp/packaging/windows-innosetup/script_x86.iss75
8 files changed, 286 insertions, 0 deletions
diff --git a/libs/assimp/packaging/windows-innosetup/LICENSE.rtf b/libs/assimp/packaging/windows-innosetup/LICENSE.rtf
new file mode 100644
index 0000000..d2e700f
--- /dev/null
+++ b/libs/assimp/packaging/windows-innosetup/LICENSE.rtf
Binary files differ
diff --git a/libs/assimp/packaging/windows-innosetup/WEB b/libs/assimp/packaging/windows-innosetup/WEB
new file mode 100644
index 0000000..d14d6ed
--- /dev/null
+++ b/libs/assimp/packaging/windows-innosetup/WEB
@@ -0,0 +1,6 @@
+
+Project home page:
+http://assimp.sourceforge.net
+
+Sourceforge.net project page:
+http://www.sourceforge.net/projects/assimp
diff --git a/libs/assimp/packaging/windows-innosetup/howto-build-setup.txt b/libs/assimp/packaging/windows-innosetup/howto-build-setup.txt
new file mode 100644
index 0000000..d089c0c
--- /dev/null
+++ b/libs/assimp/packaging/windows-innosetup/howto-build-setup.txt
@@ -0,0 +1,16 @@
+
+How to build the Assimp installer using Inno Setup
+
+
+1) Get MS VC 2008 SP1 redist packages for x86 and amd64 and copy 'em right here.
+
+vcredist_x86.exe
+vcredist_x64.exe
+
+2) Get D3DCompiler_NN.dll and D3DX9_NN.dll from a) your system32 folder and b) your SysWOW64 folder. Copy all 4 here. Rename the 64 bit files to <originalname>_x64.dll. NN is the D3DX version targeted by your DX SDK. If it is not 42, you need to update the Inno setup script (script.iss) as well. If you don't have a 64 bit Windows, get the DLLs from somebody else. Please don't ask google because many DLL downloads are infected.
+
+3) Build assimp, assimpcmd and assimpview for the 'release-dll' target and both the Win32 and x64 architectures.
+
+4) Get Inno Setup
+5) Compile, output is written to the 'out' folder.
+
diff --git a/libs/assimp/packaging/windows-innosetup/readme_installer.txt b/libs/assimp/packaging/windows-innosetup/readme_installer.txt
new file mode 100644
index 0000000..252c396
--- /dev/null
+++ b/libs/assimp/packaging/windows-innosetup/readme_installer.txt
@@ -0,0 +1,23 @@
+
+------------------------------------------------------------------------------------
+Open Asset Import Library (Assimp) SDK Installer
+Release Notes
+------------------------------------------------------------------------------------
+
+http://assimp.sf.net
+
+
+Troubleshooting
+===============
+
+1. Missing d3dx9_(some-number).dll?
+Install the latest DirectX runtime or grab the file from somewhere (that's evil but mostly fine).
+
+2. Application configuration not correct / missing msvcr***.dll?
+Reinstall Microsoft Visual C++ 2005 SP1 Redistributable (x86 or x64, depending on your system)
+
+3. assimp.exe not in PATH
+Add it to PATH. That's not a bug, the installer does not alter the PATH.
+
+4. Crashes immediately
+You CPU lacks SSE2 support. Build Assimp from scratch to suit your CPU, sorry.
diff --git a/libs/assimp/packaging/windows-innosetup/readme_installer_vieweronly.txt b/libs/assimp/packaging/windows-innosetup/readme_installer_vieweronly.txt
new file mode 100644
index 0000000..0acd6ef
--- /dev/null
+++ b/libs/assimp/packaging/windows-innosetup/readme_installer_vieweronly.txt
@@ -0,0 +1,32 @@
+
+------------------------------------------------------------------------------------
+Open Asset Import Library (Assimp) Viewer Installer
+Release Notes
+------------------------------------------------------------------------------------
+
+http://assimp.sf.net
+
+Known Bugs & Limitations
+========================
+
+Viewer
+
+- Normals appear flipped from time to time when either of the normals-related menu items was hit.
+- Alpha-sorting is implemented, but still causes artifacts when models are moved quickly.
+- Several important texture file formats (such as GIF) are not supported.
+- HUD is blurred on the right side. ATI/AMD hardware only.
+
+Troubleshooting
+===============
+
+1. Missing d3dx9_(number).dll?
+Install the latest DirectX runtime or grab the file from somewhere (that's evil but mostly fine).
+
+2. Application configuration not correct / missing msvcr***.dll?
+Reinstall Microsoft Visual C++ 2005 SP1 Redistributable (x86 or x64, depending on your system)
+
+3. assimp.exe not in PATH
+Add it to PATH. That's not a bug, the installer does not alter the PATH.
+
+4. Crashes immediately
+You CPU lacks SSE2 support. Build Assimp from scratch to suit your CPU, sorry.
diff --git a/libs/assimp/packaging/windows-innosetup/script_vieweronly.iss b/libs/assimp/packaging/windows-innosetup/script_vieweronly.iss
new file mode 100644
index 0000000..1a91fb9
--- /dev/null
+++ b/libs/assimp/packaging/windows-innosetup/script_vieweronly.iss
@@ -0,0 +1,60 @@
+; Setup script for use with Inno Setup.
+
+[Setup]
+AppName=Open Asset Import Library - Viewer
+AppVerName=Open Asset Import Library - Viewer (v2.0)
+DefaultDirName={pf}\AssimpView
+DefaultGroupName=AssimpView
+UninstallDisplayIcon={app}\bin\x86\assimp.exe
+OutputDir=out_vieweronly
+AppCopyright=Assimp Development Team
+SetupIconFile=..\..\tools\shared\assimp_tools_icon.ico
+WizardImageFile=compiler:WizModernImage-IS.BMP
+WizardSmallImageFile=compiler:WizModernSmallImage-IS.BMP
+LicenseFile=License.rtf
+OutputBaseFileName=assimp-view-2.0-setup
+VersionInfoVersion=2.0.0.0
+VersionInfoTextVersion=2.0
+VersionInfoCompany=Assimp Development Team
+ArchitecturesInstallIn64BitMode=x64
+
+
+[Run]
+Filename: "{app}\stub\vcredist_x86.exe"; Parameters: "/qb"; StatusMsg: "Installing VS2008 SP1 redistributable package (32 Bit)"; Check: not IsWin64
+Filename: "{app}\stub\vcredist_x64.exe"; Parameters: "/qb"; StatusMsg: "Installing VS2008 SP1 redistributable package (64 Bit)"; Check: IsWin64
+
+[Files]
+
+Source: "readme_installer_vieweronly.txt"; DestDir: "{app}"; Flags: isreadme
+
+; Installer stub
+Source: "vcredist_x86.exe"; DestDir: "{app}\stub\"; Check: not IsWin64
+Source: "vcredist_x64.exe"; DestDir: "{app}\stub\"; Check: IsWin64
+
+; Common stuff
+Source: "..\..\CREDITS"; DestDir: "{app}"
+Source: "..\..\LICENSE"; DestDir: "{app}"
+Source: "..\..\README"; DestDir: "{app}"
+Source: "WEB"; DestDir: "{app}"
+
+; x86 binaries
+Source: "..\..\bin\assimp_release-dll_Win32\Assimp32.dll"; DestDir: "{app}\bin\x86"
+Source: "..\..\bin\assimpview_release-dll_Win32\assimp_view.exe"; DestDir: "{app}\bin\x86"
+Source: "D3DCompiler_42.dll"; DestDir: "{app}\bin\x86"
+Source: "D3DX9_42.dll"; DestDir: "{app}\bin\x86"
+Source: "..\..\bin\assimpcmd_release-dll_Win32\assimp.exe"; DestDir: "{app}\bin\x86"
+
+; x64 binaries
+Source: "..\..\bin\assimp_release-dll_x64\Assimp64.dll"; DestDir: "{app}\bin\x64"
+Source: "..\..\bin\assimpview_release-dll_x64\assimp_view.exe"; DestDir: "{app}\bin\x64"
+Source: "D3DCompiler_42_x64.dll"; DestDir: "{app}\bin\x64"; DestName: "D3DCompiler_42.dll"
+Source: "D3DX9_42_x64.dll"; DestDir: "{app}\bin\x64"; DestName: "D3DX9_42.dll"
+Source: "..\..\bin\assimpcmd_release-dll_x64\assimp.exe"; DestDir: "{app}\bin\x64"
+
+; Documentation
+Source: "..\..\doc\AssimpCmdDoc_Html\AssimpCmdDoc.chm"; DestDir: "{app}\doc"
+
+[Icons]
+Name: "{group}\Assimp Command Line Manual"; Filename: "{app}\doc\AssimpCmdDoc.chm"
+Name: "{group}\AssimpView"; Filename: "{app}\bin\x64\assimp_view.exe"; Check: IsWin64
+Name: "{group}\AssimpView"; Filename: "{app}\bin\x86\assimp_view.exe"; Check: not IsWin64
diff --git a/libs/assimp/packaging/windows-innosetup/script_x64.iss b/libs/assimp/packaging/windows-innosetup/script_x64.iss
new file mode 100644
index 0000000..2711b1b
--- /dev/null
+++ b/libs/assimp/packaging/windows-innosetup/script_x64.iss
@@ -0,0 +1,74 @@
+; Setup script for use with Inno Setup.
+
+[Setup]
+AppName=Open Asset Import Library - SDK
+AppVerName=Open Asset Import Library - SDK (v5.1.0)
+DefaultDirName={pf}\Assimp
+DefaultGroupName=Assimp
+UninstallDisplayIcon={app}\bin\x64\assimp.exe
+OutputDir=out
+AppCopyright=Assimp Development Team
+SetupIconFile=..\..\tools\shared\assimp_tools_icon.ico
+WizardImageFile=compiler:WizModernImage-IS.BMP
+WizardSmallImageFile=compiler:WizModernSmallImage-IS.BMP
+LicenseFile=License.rtf
+OutputBaseFileName=assimp-sdk-5.1.0-setup
+VersionInfoVersion=5.1.0.0
+VersionInfoTextVersion=5.1.0
+VersionInfoCompany=Assimp Development Team
+ArchitecturesInstallIn64BitMode=x64
+
+[Types]
+Name: "full"; Description: "Full installation"
+Name: "compact"; Description: "Compact installation, no test models or language bindings"
+Name: "custom"; Description: "Custom installation"; Flags: iscustom
+
+[Components]
+Name: "main"; Description: "Main Files ( 64 Bit )"; Types: full compact custom; Flags: fixed
+Name: "tools"; Description: "Asset Viewer & Command Line Tools (32 and 64 Bit)"; Types: full compact
+Name: "help"; Description: "Help Files"; Types: full compact
+Name: "samples"; Description: "Samples"; Types: full
+Name: "test"; Description: "Test Models (BSD-licensed)"; Types: full
+Name: "test_nonbsd"; Description: "Test Models (other (free) licenses)"; Types: full
+
+[Run]
+Filename: "{app}\stub\vc_redist.x64.exe"; Parameters: "/qb /passive /quiet"; StatusMsg: "Installing VS2017 redistributable package (64 Bit)"; Check: IsWin64
+
+[Files]
+Source: "readme_installer.txt"; DestDir: "{app}"; Flags: isreadme
+
+; Installer stub
+Source: "vc_redist.x64.exe"; DestDir: "{app}\stub\"; Check: IsWin64
+
+; Common stuff
+Source: "..\..\CREDITS"; DestDir: "{app}"
+Source: "..\..\LICENSE"; DestDir: "{app}"
+Source: "..\..\README"; DestDir: "{app}"
+Source: "WEB"; DestDir: "{app}"
+
+Source: "..\..\scripts\*"; DestDir: "{app}\scripts"; Flags: recursesubdirs
+
+; x64 binaries
+Source: "..\..\bin\release\assimp-vc141-mt.dll"; DestDir: "{app}\bin\x64"
+Source: "..\..\bin\release\assimp_viewer.exe"; DestDir: "{app}\bin\x64"; Components: tools
+Source: "C:\Windows\SysWOW64\D3DCompiler_42.dll"; DestDir: "{app}\bin\x64"; DestName: "D3DCompiler_42.dll"; Components: tools
+Source: "C:\Windows\SysWOW64\D3DX9_42.dll"; DestDir: "{app}\bin\x64"; DestName: "D3DX9_42.dll"; Components: tools
+Source: "..\..\bin\release\assimp.exe"; DestDir: "{app}\bin\x64"; Components: tools
+
+; Import libraries
+Source: "..\..\lib\release\assimp-vc141-mt.lib"; DestDir: "{app}\lib\x64"
+
+; Samples
+Source: "..\..\samples\*"; DestDir: "{app}\samples"; Flags: recursesubdirs; Components: samples
+
+; Include files
+Source: "..\..\include\*"; DestDir: "{app}\include"; Flags: recursesubdirs
+
+; CMake files
+Source: "..\..\cmake-modules\*"; DestDir: "{app}\cmake-modules"; Flags: recursesubdirs
+
+[Icons]
+; Name: "{group}\Assimp Manual"; Filename: "{app}\doc\AssimpDoc.chm" ; Components: help
+; Name: "{group}\Assimp Command Line Manual"; Filename: "{app}\doc\AssimpCmdDoc.chm"; Components: help
+; Name: "{group}\AssimpView"; Filename: "{app}\bin\x64\assimp_view.exe"; Components: tools; Check: IsWin64
+; Name: "{group}\AssimpView"; Filename: "{app}\bin\x86\assimp_view.exe"; Components: tools; Check: not IsWin64
diff --git a/libs/assimp/packaging/windows-innosetup/script_x86.iss b/libs/assimp/packaging/windows-innosetup/script_x86.iss
new file mode 100644
index 0000000..deacb72
--- /dev/null
+++ b/libs/assimp/packaging/windows-innosetup/script_x86.iss
@@ -0,0 +1,75 @@
+; Setup script for use with Inno Setup.
+
+[Setup]
+AppName=Open Asset Import Library - SDK
+AppVerName=Open Asset Import Library - SDK (v5.1.0)
+DefaultDirName={pf}\Assimp
+DefaultGroupName=Assimp
+UninstallDisplayIcon={app}\bin\x86\assimp.exe
+OutputDir=out
+AppCopyright=Assimp Development Team
+SetupIconFile=..\..\tools\shared\assimp_tools_icon.ico
+WizardImageFile=compiler:WizModernImage-IS.BMP
+WizardSmallImageFile=compiler:WizModernSmallImage-IS.BMP
+LicenseFile=License.rtf
+OutputBaseFileName=assimp-sdk-5.1.0-setup
+VersionInfoVersion=5.1.0.0
+VersionInfoTextVersion=5.1.0
+VersionInfoCompany=Assimp Development Team
+;ArchitecturesInstallIn64BitMode=x64
+
+[Types]
+Name: "full"; Description: "Full installation"
+Name: "compact"; Description: "Compact installation, no test models or language bindings"
+Name: "custom"; Description: "Custom installation"; Flags: iscustom
+
+[Components]
+Name: "main"; Description: "Main Files (32 and 64 Bit)"; Types: full compact custom; Flags: fixed
+Name: "tools"; Description: "Asset Viewer & Command Line Tools (32 and 64 Bit)"; Types: full compact
+Name: "help"; Description: "Help Files"; Types: full compact
+Name: "samples"; Description: "Samples"; Types: full
+Name: "test"; Description: "Test Models (BSD-licensed)"; Types: full
+Name: "test_nonbsd"; Description: "Test Models (other (free) licenses)"; Types: full
+
+[Run]
+Filename: "{app}\stub\vc_redist.x86.exe"; Parameters: "/qb /passive /quiet"; StatusMsg: "Installing VS2017 redistributable package (32 Bit)"; Check: not IsWin64
+
+[Files]
+Source: "readme_installer.txt"; DestDir: "{app}"; Flags: isreadme
+
+; Installer stub
+Source: "vc_redist.x86.exe"; DestDir: "{app}\stub\"; Check: not IsWin64
+
+; Common stuff
+Source: "..\..\CREDITS"; DestDir: "{app}"
+Source: "..\..\LICENSE"; DestDir: "{app}"
+Source: "..\..\README"; DestDir: "{app}"
+Source: "WEB"; DestDir: "{app}"
+
+Source: "..\..\scripts\*"; DestDir: "{app}\scripts"; Flags: recursesubdirs
+
+; x86 binaries
+Source: "..\..\bin\release\assimp-vc141-mt.dll"; DestDir: "{app}\bin\x86"
+Source: "..\..\bin\release\assimp_viewer.exe"; DestDir: "{app}\bin\x86"; Components: tools
+Source: "C:\Windows\SysWOW64\D3DCompiler_42.dll"; DestDir: "{app}\bin\x86"; Components: tools
+Source: "C:\Windows\SysWOW64\D3DX9_42.dll"; DestDir: "{app}\bin\x86"; Components: tools
+Source: "..\..\bin\release\assimp.exe"; DestDir: "{app}\bin\x86"; Components: tools
+
+
+; Import libraries
+Source: "..\..\lib\release\assimp-vc141-mt.lib"; DestDir: "{app}\lib\x86"
+
+; Samples
+Source: "..\..\samples\*"; DestDir: "{app}\samples"; Flags: recursesubdirs; Components: samples
+
+; Include files
+Source: "..\..\include\*"; DestDir: "{app}\include"; Flags: recursesubdirs
+
+; CMake files
+Source: "..\..\cmake-modules\*"; DestDir: "{app}\cmake-modules"; Flags: recursesubdirs
+
+[Icons]
+; Name: "{group}\Assimp Manual"; Filename: "{app}\doc\AssimpDoc.chm" ; Components: help
+; Name: "{group}\Assimp Command Line Manual"; Filename: "{app}\doc\AssimpCmdDoc.chm"; Components: help
+; Name: "{group}\AssimpView"; Filename: "{app}\bin\x64\assimp_view.exe"; Components: tools; Check: IsWin64
+; Name: "{group}\AssimpView"; Filename: "{app}\bin\x86\assimp_view.exe"; Components: tools; Check: not IsWin64