diff --git a/CMakeSettings.json b/CMakeSettings.json index 74875c4..2d9e6f9 100644 --- a/CMakeSettings.json +++ b/CMakeSettings.json @@ -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": [] } ] diff --git a/INSTALL.W32.md b/INSTALL.W32.md index 8938cfc..12e25b8 100644 --- a/INSTALL.W32.md +++ b/INSTALL.W32.md @@ -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/