vscode-cmake-tools
vscode-cmake-tools copied to clipboard
CMake integration in Visual Studio Code
### Brief Issue Summary I have a library dependency which has same dll names for debug and release builds, but has different folder. So I need to have build configuration...
feature-request: https://github.com/microsoft/vscode-cmake-tools/issues/2553 sample: ```json { "version": "2.0.0", "tasks": [ { "type": "cmake", "label": "1CMake build with presets", "command": "build", "targets": [ "main" ], "preset": "${command:cmake.activeBuildPresetName}", "options": { "cwd": "${command:cmake.buildDirectory}" },...
Ideally, we want to remove `null` and replace it with `undefined` as much as possible.
### Brief Issue Summary I've seen a number of reports of this issue but am having difficulty finding the right solution. Windows 10 version 21H2 VS Code version 1.69.2 VS...
### Brief Issue Summary I maintain a repo in which there are multiple target architectures. For the most part, the executables being built for the different architectures have separate code,...
### Brief Issue Summary A workspace with multiple folders each with its own CMakePresets.json file is offering the older, non-preset commands. ### Expected: Hit Ctrl+Shift+P, and type "scan". ### Apparent...
### In a workspace, CMake Tools prompts `CMake Tools would like to configure IntelliSense for the ` for every non-CMake folder. ### CMake Tools Diagnostics ``` ``` ### Debug Log...
If I include in CMakeLists.txt lines: LIST(APPEND CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "SomePathToDir") LIST(APPEND CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "SomePathToDir") then i would expect that header C/C++ files inside these directories will be searched for when included in...