mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Update to CEF v3.2171.1979.
Using the bundled VS solution files is deprecated, and they aren't provided for the 2272 branch, so update the instructions to use CMake. One D3D DLL has been replaced with a newer DLL too, so the build and packaging scripts have been updated for that.
This commit is contained in:
+21
-14
@@ -13,19 +13,27 @@ b2 toolset=msvc threadapi=win32 link=static runtime-link=static variant=release
|
||||
|
||||
#### Chromium Embedded Framework
|
||||
|
||||
Most of the required binaries are pre-built, but the libcef_dll_wrapper dynamic library must be built. Just open its project file and build it with the `Release` configuration.
|
||||
Most of the required binaries are pre-built, but the libcef_dll_wrapper dynamic library must be built.
|
||||
|
||||
1. Configure CMake and generate a build system for Visual Studio by running:
|
||||
|
||||
```
|
||||
mkdir build && cd build
|
||||
cmake.exe .. -G "Visual Studio 12"
|
||||
```
|
||||
|
||||
2. Open the generated solution file, and build it with `Release` configuration.
|
||||
|
||||
#### yaml-cpp
|
||||
|
||||
1. Configure CMake and generate a build system for Visual Studio by running:
|
||||
2.
|
||||
```
|
||||
mkdir build
|
||||
cd build
|
||||
cmake.exe .. -G "Visual Studio 12" -DBOOST_ROOT={BOOST_ROOT} -DMSVC_SHARED_RT=OFF
|
||||
```
|
||||
|
||||
Adapt the commands as necessary for your particular setup.
|
||||
```
|
||||
mkdir build && cd build
|
||||
cmake.exe .. -G "Visual Studio 12" -DBOOST_ROOT={BOOST_ROOT} -DMSVC_SHARED_RT=OFF
|
||||
```
|
||||
|
||||
Adapt the commands as necessary for your particular setup.
|
||||
2. Open the generated solution file, and build it with `Release` configuration.
|
||||
|
||||
#### Libloadorder
|
||||
@@ -37,12 +45,11 @@ Example CMake keys: `-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=build -DCMAKE_ARCHIVE_OUTP
|
||||
#### Libgit2
|
||||
|
||||
1. Configure CMake and generate a build system for Visual Studio by running:
|
||||
2.
|
||||
```
|
||||
mkdir build
|
||||
cd build
|
||||
cmake.exe .. -G "Visual Studio 12" -DBUILD_SHARED_LIBS=OFF -DSTATIC_CRT=ON -DTHREADSAFE=ON
|
||||
```
|
||||
|
||||
```
|
||||
mkdir build && cd build
|
||||
cmake.exe .. -G "Visual Studio 12" -DBUILD_SHARED_LIBS=OFF -DSTATIC_CRT=ON -DTHREADSAFE=ON
|
||||
```
|
||||
|
||||
Adapt the commands as necessary for your particular setup.
|
||||
2. Open the generated solution file, and build it with `Release` configuration.
|
||||
|
||||
Reference in New Issue
Block a user