zoukankan      html  css  js  c++  java
  • VS2017 CMake配置

    "configurations": [
        {
          "name": "x86-Release",
          "generator": "Ninja",
          "configurationType": "Release",
          "inheritEnvironments": [
            "msvc_x86"
          ],
          "buildRoot": "${projectDir}\vs-cmake-build\build\${name}",
          "installRoot": "${projectDir}\vs-cmake-build\install\${name}",
          "cmakeCommandArgs": "",
          "buildCommandArgs": "-v",
          "ctestCommandArgs": ""
        },
        {
          "name": "x86-Debug",
          "generator": "Ninja",
          "configurationType": "Debug",
          "inheritEnvironments": [
            "msvc_x86"
          ],
          "buildRoot": "${projectDir}\vs-cmake-build\build\${name}",
          "installRoot": "${projectDir}\vs-cmake-build\install\${name}",
          "cmakeCommandArgs": "",
          "buildCommandArgs": "-v",
          "ctestCommandArgs": ""
        },
        {
          "name": "x64-Debug",
          "generator": "Ninja",
          "configurationType": "Debug",
          "inheritEnvironments": [
            "msvc_x64_x64"
          ],
          "buildRoot": "${projectDir}\vs-cmake-build\build\${name}",
          "installRoot": "${projectDir}\vs-cmake-build\install\${name}",
          "cmakeCommandArgs": "",
          "buildCommandArgs": "-v",
          "ctestCommandArgs": ""
        },
        {
          "name": "x64-Release",
          "generator": "Ninja",
          "configurationType": "Release",
          "inheritEnvironments": [
            "msvc_x64_x64"
          ],
          "buildRoot": "${projectDir}\vs-cmake-build\build\${name}",
          "installRoot": "${projectDir}\vs-cmake-build\install\${name}",
          "cmakeCommandArgs": "",
          "buildCommandArgs": "-v",
          "ctestCommandArgs": ""
        }
      ]
  • 相关阅读:
    ps:点阵格式图像
    ps:图像尺寸
    ps:HSB色彩模式
    git上传文件夹的问题
    sublime下载emmet
    git Octotree:提供项目目录,方便用户在线快速浏览项目结构【转载】
    git@github.com出现Permission denied (publickey)
    less:避免编译
    less:@arguments变量
    less嵌套规则
  • 原文地址:https://www.cnblogs.com/vczf/p/13889557.html
Copyright © 2011-2022 走看看