Hello Jakub, the Windows build documentation is very outdated and all those prebuilt versions are old.
Here is what I do on Windows to get a working build: - Get VCPkg: https://github.com/Microsoft/vcpkg This is a package manager for Win that lets you install packages in a more Linux-like way. Once it is installed you can f. e. do: "vcpkg install package" to install the dependencies you need. - Get CMake: https://cmake.org/ In CMake-gui you can then point to the path where VCPkg installed the dependencies. For me that looks like C:/Users/till/Documents/vcpkg/installed/x64-windows/include for the include dir. AFAIK the THIRD_PARTY_TOOLS_HOME environment variable does not exist anymore in recent versions, you have to set all the paths manually. You should also set the CMAKE_INSTALL_PREFIX to specify where you want to put the created binaries. When you have set all the paths and options, hit Configure and choose the compiler you want to use. For me that is MSVC2017. This creates a Visual Studio solution. Click on Open Project to load it and build. On Linux I use a script to set the options for make: #!/bin/bash make -j24 \ STOP_ON_WARNING=0 \ USE_QT=0 \ USE_PYTHON=0 \ USE_NUKE=0 \ USE_OPENCV=0 \ Change the options to suit your needs. If you have questions don't hesitate to get in touch! Am Fr., 3. Jan. 2020 um 18:36 Uhr schrieb Jakub Ježek <jakub@orbi.tools>: > Hello oiio developers, > > I would like to ask you if it is possible to update links here: > > https://github.com/OpenImageIO/oiio/blob/master/INSTALL.md#building-on-windows > > Most of referenced links are not functional. The documentation is quite > important for me as I am new in windows building and not able to do > anything without it. Also the pre built packages as stated lower would be > also very helpful as it would speed up the workflow enormously. > Documentation - > https://sites.google.com/site/openimageio/building-oiio-on-windows > QT4 - > http://qt-windows-binaries.googlecode.com/svn/site/index.html/index.html > Boost - https://daveabrahams.com/download > > We would like to connect to your project as we are a group of developers > for VFX and animation. But we are not able to do too much without your > help. Or at least could you connect us to someone who could help us with > building for linux and windows platform with price estimation? > > Thank you very much. > PYPE.club by Orbi Tools > > Jakub Ježek lead SW developer > > > +420 775 115 173 > > ja...@pype.club > > _______________________________________________ > Oiio-dev mailing list > Oiio-dev@lists.openimageio.org > http://lists.openimageio.org/listinfo.cgi/oiio-dev-openimageio.org >
_______________________________________________ Oiio-dev mailing list Oiio-dev@lists.openimageio.org http://lists.openimageio.org/listinfo.cgi/oiio-dev-openimageio.org