update cmake docs

This commit is contained in:
Mathis Logemann 2021-08-13 17:21:46 +02:00
parent 8500b3cd69
commit 83e77559c4

View file

@ -56,16 +56,16 @@ This could look like this:
"name": "vcpkg-x64-win-debug",
"inherits": "windows-default-debug",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "D:/dev/vcpkg/scripts/buildsystems/vcpkg.cmake",
"ADDITIONAL_LIBARIES_PATHS":"D:/dev/vcpkg/x64-windows/debug/bin"
"CMAKE_TOOLCHAIN_FILE": "<path-to-vcpkg>/scripts/buildsystems/vcpkg.cmake",
"ADDITIONAL_LIBARIES_PATHS":"<path-to-vcpkg>/installed/x64-windows/debug/bin"
}
},
{
"name": "vcpkg-x64-win-release",
"inherits": "windows-default-release",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "D:/dev/vcpkg/scripts/buildsystems/vcpkg.cmake",
"ADDITIONAL_LIBARIES_PATHS":"D:/dev/vcpkg/x64-windows/bin"
"CMAKE_TOOLCHAIN_FILE": "<path-to-vcpkg>/scripts/buildsystems/vcpkg.cmake",
"ADDITIONAL_LIBARIES_PATHS":"<path-to-vcpkg>/installed/x64-windows/bin"
}
}
]