CMakeSettings.json 881 字节
Newer Older
C
Channingss 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{
    "configurations": [
        {
            "name": "x64-Release",
            "generator": "Ninja",
            "configurationType": "RelWithDebInfo",
            "inheritEnvironments": [ "msvc_x64_x64" ],
            "buildRoot": "${projectDir}\\out\\build\\${name}",
            "installRoot": "${projectDir}\\out\\install\\${name}",
            "cmakeCommandArgs": "",
            "buildCommandArgs": "-v",
            "ctestCommandArgs": "",
            "variables": [
                {
                    "name": "OPENCV_DIR",
                    "value": "C:/projects/opencv",
                    "type": "PATH"
                },
                {
C
Channingss 已提交
20 21
                    "name": "OPENVINO_DIR",
                    "value": "C:/projetcs/inference_engine",
C
Channingss 已提交
22 23 24 25 26
                    "type": "PATH"
                }
            ]
        }
    ]
C
Channingss 已提交
27
}