add 64-bit Windows targets

This commit is contained in:
mtrojnar 2022-07-17 07:46:12 +02:00
parent 6ffe7fa0de
commit b63b023c5c
2 changed files with 27 additions and 3 deletions

View File

@ -20,7 +20,30 @@
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x86" ],
"inheritEnvironments": [ "msvc_x86" ]
},
{
"name": "x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": []
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": []
}
]

View File

@ -98,9 +98,10 @@
1) Install and integrate vcpkg: https://vcpkg.io/en/getting-started.html
2) Install the prerequisites:
2) Install the 32-bit and/or 64-bit prerequisites:
```
vcpkg install openssl curl
vcpkg install openssl:x86-windows curl:x86-windows
vcpkg install openssl:x64-windows curl:x64-windows
```
3) Git clone osslsigncode: https://github.com/mtrojnar/osslsigncode/