This commit is contained in:
vector-of-bool 2017-03-27 23:06:28 -06:00
Родитель 532f9cfaec
Коммит c3e18d90a2
3 изменённых файлов: 25 добавлений и 1 удалений

Просмотреть файл

@ -13,6 +13,18 @@
- **0.9.1**: Fix issues with CMake Server and cache editor.
- **0.9.2**: Fix issues with environment variables on Windows.
- **0.9.3**: Various bugfixes. Shiny new icon.
- **0.9.4**:
- Fix issues with GCC template error parsing
- Do not forcibly set `BUILD_SHARED_LIBS`
- Fix issues with incorrect debug paths with cmake-server
- `cmake.platform` setting for controlling the `-A` CMake option.
- New command `cmake.debugTargetProgramPath` for usage in `launch.json`:
- This means that other debuggers can be used with CMake Tools just
by setting them up with `launch.json`, using `${command.cmake.debugTargetProgramPath}` as the path to the program. VSCode
will replace that with the path from CMake Tools. This makes setting up
permanent debugging configurations easier than before. Also, the `Debug`
button in the status bar is *only* visible if the Microsoft C/C++ extension
is installed, since that button is currently hard-coded to use it.
### **0.8.0**:
- **Automatic Environment Selection**. CMake Tools will now automatically

Просмотреть файл

@ -21,6 +21,18 @@ scripting language. For that I recommend [this extension](https://marketplace.vi
- **0.9.1**: Fix issues with CMake Server and cache editor.
- **0.9.2**: Fix issues with environment variables on Windows.
- **0.9.3**: Various bugfixes. Shiny new icon.
- **0.9.4**:
- Fix issues with GCC template error parsing
- Do not forcibly set `BUILD_SHARED_LIBS`
- Fix issues with incorrect debug paths with cmake-server
- `cmake.platform` setting for controlling the `-A` CMake option.
- New command `cmake.debugTargetProgramPath` for usage in `launch.json`:
- This means that other debuggers can be used with CMake Tools just
by setting them up with `launch.json`, using `${command.cmake.debugTargetProgramPath}` as the path to the program. VSCode
will replace that with the path from CMake Tools. This makes setting up
permanent debugging configurations easier than before. Also, the `Debug`
button in the status bar is *only* visible if the Microsoft C/C++ extension
is installed, since that button is currently hard-coded to use it.
As always: Please report any issues, questions, or comments to the GitHub
project issues list!

Просмотреть файл

@ -2,7 +2,7 @@
"name": "cmake-tools",
"displayName": "CMake Tools",
"description": "Extended CMake support in Visual Studio Code",
"version": "0.9.3",
"version": "0.9.4",
"repository": {
"type": "git",
"url": "https://github.com/vector-of-bool/vscode-cmake-tools"