mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
{
|
|
"configurations": [
|
|
{
|
|
"name": "Debug",
|
|
"generator": "Visual Studio 15 2017 Win64",
|
|
"configurationType": "Debug",
|
|
"buildRoot": "${workspaceRoot}\\build-vc\\${name}",
|
|
"cmakeCommandArgs": "",
|
|
"variables": [
|
|
{
|
|
"name": "CMAKE_TOOLCHAIN_FILE",
|
|
"value": "${workspaceRoot}\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake" // <-- change vcpkg location here
|
|
},
|
|
{
|
|
"name": "CMAKE_INSTALL_PREFIX",
|
|
"value": "${workspaceRoot}/.deps"
|
|
},
|
|
{
|
|
"name": "Qt5_DIR",
|
|
"value": "C:\\Qt\\5.11.1\\msvc2017_64\\lib\\cmake\\Qt5" // <-- change qt location here
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "Release",
|
|
"generator": "Visual Studio 15 2017 Win64",
|
|
"configurationType": "Release",
|
|
"buildRoot": "${workspaceRoot}\\build-vc\\${name}",
|
|
"cmakeCommandArgs": "",
|
|
"variables": [
|
|
{
|
|
"name": "CMAKE_TOOLCHAIN_FILE",
|
|
"value": "${workspaceRoot}\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake" // <-- change vcpkg location here
|
|
},
|
|
{
|
|
"name": "CMAKE_INSTALL_PREFIX",
|
|
"value": "${workspaceRoot}/.deps"
|
|
},
|
|
{
|
|
"name": "Qt5_DIR",
|
|
"value": "C:\\Qt\\5.11.1\\msvc2017_64\\lib\\cmake\\Qt5" // <-- change qt location here
|
|
}
|
|
]
|
|
},
|
|
]
|
|
}
|
|
|