This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
compiling_visual_studio_deps [2022/03/27 13:39 (3 years ago)] – VS2015 -> VS2022 + Removed obsolete references to OpenAL & LibSndFile iarwain | compiling_visual_studio_deps [2022/03/27 13:53 (3 years ago)] (current) – iarwain | ||
---|---|---|---|
Line 9: | Line 9: | ||
===== Build libwebp ===== | ===== Build libwebp ===== | ||
- | - Swtich | + | - Switch |
- In a Visual Studio console, go to the libwebp folder and: nmake /f Makefile.vc CFG=release-static RTLIBCFG=static OBJDIR=output/ | - In a Visual Studio console, go to the libwebp folder and: nmake /f Makefile.vc CFG=release-static RTLIBCFG=static OBJDIR=output/ | ||
- Ignore errors, locate the lib at: libwebp\output\release-static\x86\lib\webpdecoder.lib | - Ignore errors, locate the lib at: libwebp\output\release-static\x86\lib\webpdecoder.lib | ||
Line 18: | Line 18: | ||
===== Build freetype ===== | ===== Build freetype ===== | ||
- | Follow pretty much the same as OpenAL-Soft | ||
+ | - Install the latest version of CMake | ||
+ | - Create a Visual Studio project with: cmake -DLIBTYPE=STATIC -G " | ||
+ | - Open the freetype.sln solution with Visual Studio. | ||
+ | - Switch to release, right click on the freetype project and select build to make the 32-bit static lib. | ||
+ | - Find the 32 bit version in \Release\freetype.lib | ||
+ | - For 64bit: Select the dropdown that says win32 | ||
+ | - Click and select Configuration Manager | ||
+ | - In the Active Solution Platform dropdown, click <New> | ||
+ | - Select x64 and copy from win32 (leave all options default) | ||
+ | - In the freetype project properties | ||
+ | - In C/ | ||
+ | - select Multithreaded (/MT) | ||
+ | - In Librarian / Command Line | ||
+ | - remove additional options relating to / | ||
+ | - In the common project properties | ||
+ | - In Librarian / Command Line | ||
+ | - remove additional options relating to / | ||
+ | - Right click the freetype project and select build to make the 64-bit static lib. | ||
+ | - Find the 64bit version in x64\Release\freetype.lib | ||
===== Build Liquidfun ===== | ===== Build Liquidfun ===== |