win32 distribution: add a readme document and redistributable files

metadata
Wenzel Jakob 2011-06-05 07:48:31 -07:00
parent 68cfd5411e
commit 3846cf6d52
2 changed files with 16 additions and 0 deletions

View File

@ -63,6 +63,11 @@ if sys.platform == 'win32':
prefix=dllprefix)
install('#dist', ['libcollada14dom23.dll', 'boost_system-%s-mt-1_44.dll' % compilerType,
'boost_filesystem-%s-mt-1_44.dll' % compilerType], dllprefix + '/' + compilerType + '/')
if 'WIN64' in env['CXXFLAGS']:
installTargets += env.Install('#dist', '#dependencies/windows/bin/vcredist_2010_sp1_x64.exe')
else:
installTargets += env.Install('#dist', '#dependencies/windows/bin/vcredist_2010_sp1_x86.exe')
installTargets += env.Install('#dist', '#data/windows/README.txt')
if 'REDIST_PATH' in env:
install('#dist', ['libmmd.dll', 'libiomp5md.dll'], prefix = env['REDIST_PATH'])

11
data/windows/README.txt Normal file
View File

@ -0,0 +1,11 @@
This is the binary Windows release of Mitsuba, an extensible rendering framework.
Please use the 'mtsgui.exe' executable to launch the graphical user interface.
If you encounter an error message regarding a missing component named 'msvcr100.dll'
or 'msvcp100.dll', you will need to install the package "vcredist_2010_sp1_x86.exe'
or "vcredist_2010_sp1_x64.exe' (one of them will be included with the Mitsuba release)
For general documentation on Mitsuba, please refer to
http://www.mitsuba-renderer.org/docs.html and
http://www.mitsuba-renderer.org/videos.html.