https://github.com/mathisloge/vcpkg-registry
https://github.com/mathisloge/vcpkg-registry
vcpkg-registry
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mathisloge/vcpkg-registry
- Owner: mathisloge
- Created: 2021-04-08T17:42:13.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-23T10:46:09.000Z (about 4 years ago)
- Last Synced: 2025-03-01T02:41:59.078Z (over 1 year ago)
- Topics: vcpkg-registry
- Language: CMake
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vcpkg-registry
Custom vcpkg registry. Contains my own libraries which are just used for own projects and ports that are not maintained by upstream and therefore not suited for vcpkg per policy.
Currently included packages:
* cpp-json-schema
* mylogger
* lua51 => lua 5.1.3
* lua52 => lua 5.2.4
* lua53 => lua 5.3.6
* turf
* junction
# usage
add the following to your `vcpkg-configuration.json`. For a more detailed explanation see https://github.com/microsoft/vcpkg/blob/master/docs/specifications/registries-2.md#consuming-registries
```
{
"registries": [
{
"kind": "git",
"repository": "https://github.com/mathisloge/vcpkg-registry.git",
"packages": [] <-- !add the used ports here! eg: "lua51" for lua 5.1
}
]
}
```