mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
a38502b8fe
* Update compile howto - to qt5.15 - minimal install overhead - sync with vscode and cmake * Update docs with more input gh actions windows: Qt5.15 and msvc2019 * fix: Azure build
35 lines
945 B
JSON
35 lines
945 B
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Linux",
|
|
"includePath": [
|
|
"${workspaceFolder}/**",
|
|
"/usr/include/**"
|
|
],
|
|
"defines": [],
|
|
"compilerPath": "/usr/bin/gcc",
|
|
"intelliSenseMode": "gcc-x64",
|
|
"cppStandard": "c++11",
|
|
"cStandard": "c11",
|
|
"configurationProvider": "ms-vscode.cmake-tools"
|
|
},
|
|
{
|
|
"name": "Win32",
|
|
"includePath": [
|
|
"${workspaceFolder}/**",
|
|
"C:/Qt/5.15.0/msvc2019_64/include/**"
|
|
],
|
|
"defines": [
|
|
"_DEBUG",
|
|
"UNICODE",
|
|
"_UNICODE"
|
|
],
|
|
"cStandard": "c11",
|
|
"cppStandard": "c++11",
|
|
"intelliSenseMode": "msvc-x64",
|
|
"configurationProvider": "ms-vscode.cmake-tools"
|
|
}
|
|
],
|
|
"version": 4
|
|
}
|