Updated Building KeePassXC (markdown)

Janek Bevendorff
2024-02-19 23:48:25 +01:00
parent 091c7b475b
commit c3a03d6180

@@ -106,15 +106,15 @@ Download and unpack the source code as described in the [Linux](#linux) section.
mkdir build
cd build
cmake ^
-DWITH_XC_ALL=ON ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_TOOLCHAIN_FILE=C:\vcpkg\scripts\buildsystems\vcpkg.cmake ^
-DWITH_XC_ALL=ON `
-DCMAKE_BUILD_TYPE=Release `
-DCMAKE_TOOLCHAIN_FILE=C:\vcpkg\scripts\buildsystems\vcpkg.cmake `
-DVCPKG_TARGET_TRIPLET=x64-windows-release ..
make -j8 package
```
Make sure that `-DCMAKE_TOOLCHAIN_FILE` points to the correct path of your vcpkg installation.
If you build with Msys2, omit `-DCMAKE_TOOLCHAIN_FILE` and `-DVCPKG_TARGET_TRIPLET` altogether and add `-G "MSYS Makefiles"` instead. Replace `^` with `\` if running in a Unix shell.
If you build with Msys2, omit `-DCMAKE_TOOLCHAIN_FILE` and `-DVCPKG_TARGET_TRIPLET` altogether and add `-G "MSYS Makefiles"` instead. Replace backticks with `\` if running in a Unix shell.
## 3. Running tests