Visual Studio 2022 CMake预设

xfb7svmp  于 2023-01-31  发布在  其他
关注(0)|答案(1)|浏览(268)

我在我的项目中使用CMake,并开始探索CMakePresets的可能性
我设法创建了一个默认的windows预设。目前我的Windows默认预设将CMAKE_BUILD_TYPE设置为debug。现在我想在左侧下拉列表中选择config,在右侧下拉列表中选择Build Type(见图)
这可能吗?
谢谢你的帮助

4ngedf3f

4ngedf3f1#

我自己也理解这一点,但我相信您需要的是像这样设置“buildPresets”:

{
   "name": "windows-debug",
   "displayName": "Debug",
   "configurePreset": "windows-default",
   "configuration": "Debug"
},
{
   "name": "windows-release",
   "displayName": "Release",
   "configurePreset": "windows-default",
   "configuration": "Release"
}

我认为应该使用“configuration”而不是CMAKE_BUILD_TYPE,因为它与中的标志--config相同

> cmake --build . --config Release

图片来源:https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html#build-preset

相关问题