CMakeSettings.json 1.5 KB
Newer Older
C
Channingss 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
{
    "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"
                },
                {
                    "name": "PADDLE_DIR",
                    "value": "C:/projects/fluid_install_dir_win_cpu_1.6/fluid_install_dir_win_cpu_1.6",
                    "type": "PATH"
                },
                {
                    "name": "CMAKE_BUILD_TYPE",
                    "value": "Release",
                    "type": "STRING"
                },
                {
                    "name": "WITH_STATIC_LIB",
                    "value": "True",
                    "type": "BOOL"
                },
                {
                    "name": "WITH_MKL",
                    "value": "True",
                    "type": "BOOL"
                },
                {
                    "name": "WITH_GPU",
                    "value": "False",
                    "type": "BOOL"
                }
            ]
        }
    ]
}