User Tools

Site Tools


compiling_visual_studio_deps

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
compiling_visual_studio_deps [2022/03/27 13:39 (3 years ago)] – VS2015 -> VS2022 + Removed obsolete references to OpenAL & LibSndFile iarwaincompiling_visual_studio_deps [2022/03/27 13:53 (3 years ago)] (current) iarwain
Line 9: Line 9:
 ===== Build libwebp ===== ===== Build libwebp =====
  
-  - Swtich to 32 bit compiler with: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64_x86\vcvarsamd64_x86.bat+  - Switch to 32 bit compiler with: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64_x86\vcvarsamd64_x86.bat
   - In a Visual Studio console, go to the libwebp folder and: nmake /f Makefile.vc CFG=release-static RTLIBCFG=static OBJDIR=output/32   - In a Visual Studio console, go to the libwebp folder and: nmake /f Makefile.vc CFG=release-static RTLIBCFG=static OBJDIR=output/32
   - 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 "Visual Studio 16 2022"
 +  - 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/C++->Code Generation
 +          - select Multithreaded (/MT)
 +      - In Librarian / Command Line
 +          - remove additional options relating to /machine:X86
 +  - In the common project properties
 +      - In Librarian / Command Line
 +          - remove additional options relating to /machine:X86
 +  - 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 =====
compiling_visual_studio_deps.1648413591.txt.gz · Last modified: 2022/03/27 13:39 (3 years ago) by iarwain