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": ""
        }
      ]
  • 相关阅读:
    windows程序设计笔记(11)
    windows程序设计笔记(8)
    windows程序设计笔记(9)
    windows程序设计笔记(7)
    [转]学习训练方法
    CA面试题
    windows程序设计笔记(10)
    C#线程系列(3):线程池和文件下载服务器
    Linq 使用小结
    C#线程系列(2):Thread类的应用
  • 原文地址:https://www.cnblogs.com/vczf/p/13889557.html
Copyright © 2011-2022 走看看