I'm trying to figure out how to configure my manifest file to compile a static version of my library using vcpkg's new manifest feature. My current manifest file is:
{
"name": "myProject",
"version-string": "v0.1",
],
"dependencies": [
{
"name": "curl",
"features" : [
"openssl"
],
"platform" : "(windows & x64 & static)"
}
]
}
but this results in nothing getting installed. The option "platform" : "windows"
installs for the x86-windows
triplet, but I can't figure out the correct parameters for x64-windows-static
.
I'm also curious -- is there a way to declare a triplet for all libraries, instead of making each library a JSON object and listing it specifically?