-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add vcpkg manifest with build dependencies
Also bump minimum CMake release
- Loading branch information
Showing
8 changed files
with
130 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,7 @@ CMakePresets.json | |
CMakeUserPresets.json | ||
.vs/ | ||
out/ | ||
|
||
# vcpkg | ||
vcpkg_installed*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"overlay-ports": [], | ||
"overlay-triplets": [ | ||
"vcpkg/triplets" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
"name": "keepassxc", | ||
"version-string": "2.8.0", | ||
"builtin-baseline": "2a6371b01420d8820d158b4707e79931feba27aa", | ||
"dependencies": [ | ||
{ | ||
"name": "argon2", | ||
"version>=": "20190702" | ||
}, | ||
{ | ||
"name": "botan", | ||
"version>=": "3.1.1" | ||
}, | ||
{ | ||
"name": "minizip", | ||
"version>=": "1.3" | ||
}, | ||
{ | ||
"name": "libqrencode", | ||
"version>=": "4.1.1" | ||
}, | ||
{ | ||
"name": "libusb", | ||
"version>=": "1.0.26.11791", | ||
"platform": "linux | freebsd" | ||
}, | ||
{ | ||
"name": "libxi", | ||
"version>=": "1.8", | ||
"platform": "linux | freebsd" | ||
}, | ||
{ | ||
"name": "libxtst", | ||
"version>=": "1.2.4", | ||
"platform": "linux | freebsd" | ||
}, | ||
{ | ||
"name": "qt5", | ||
"version>=": "5.15.11" | ||
}, | ||
{ | ||
"name": "qt5-imageformats", | ||
"version>=": "5.15.11" | ||
}, | ||
{ | ||
"name": "qt5-macextras", | ||
"version>=": "5.15.11", | ||
"platform": "osx" | ||
}, | ||
{ | ||
"name": "qt5-svg", | ||
"version>=": "5.15.11" | ||
}, | ||
{ | ||
"name": "qt5-tools", | ||
"version>=": "5.15.11" | ||
}, | ||
{ | ||
"name": "qt5-translations", | ||
"version>=": "5.15.11" | ||
}, | ||
{ | ||
"name": "qt5-wayland", | ||
"version>=": "5.15.11", | ||
"platform": "linux | freebsd" | ||
}, | ||
{ | ||
"name": "qt5-x11extras", | ||
"version>=": "5.15.11", | ||
"platform": "linux | freebsd" | ||
}, | ||
{ | ||
"name": "readline", | ||
"version>=": "0#5" | ||
}, | ||
{ | ||
"name": "zlib", | ||
"version>=": "1.3" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
set(VCPKG_TARGET_ARCHITECTURE arm64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE dynamic) | ||
|
||
set(VCPKG_CMAKE_SYSTEM_NAME Darwin) | ||
set(VCPKG_OSX_ARCHITECTURES arm64) | ||
|
||
set(VCPKG_BUILD_TYPE release) | ||
set(VCPKG_OSX_DEPLOYMENT_TARGET 11.0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
set(VCPKG_TARGET_ARCHITECTURE x64) | ||
set(VCPKG_CRT_LINKAGE dynamic) | ||
set(VCPKG_LIBRARY_LINKAGE dynamic) | ||
|
||
set(VCPKG_CMAKE_SYSTEM_NAME Darwin) | ||
set(VCPKG_OSX_ARCHITECTURES x86_64) | ||
|
||
set(VCPKG_BUILD_TYPE release) | ||
set(VCPKG_OSX_DEPLOYMENT_TARGET 10.15) |