-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: Add VSCode and Cmake setup guide #45
Conversation
@HeadBoffin does this PR cover your request? |
|
||
You can adjust [CMake settings](https://github.com/microsoft/vscode-cmake-tools/blob/develop/docs/cmake-settings.md#cmake-settings) according to your environment. | ||
|
||
For example, In Windows, you can adjust the generator to `MinGW Makefiles` instead of `Ninja` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For example, In Windows, you can adjust the generator to `MinGW Makefiles` instead of `Ninja` | |
For example, In Windows, you can adjust the generator to `MinGW Makefiles` instead of `Ninja`: |
"cmake.generator":"MinGW Makefiles", | ||
``` | ||
|
||
You can also adjust the `TARGET_APP` to `basic_lorawan` or any other preferred application. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can also adjust the `TARGET_APP` to `basic_lorawan` or any other preferred application. | |
You can also adjust the `TARGET_APP` to `basic_lorawan` or any other preferred application: |
|
||
``` | ||
"TARGET_APP":"basic_lorawan", | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add a blank line after this code block
Finally, you can invoke the following commands from VSCode Command Palette: | ||
|
||
`Cmake: Configure` followed by `Cmake: Build`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Finally, you can invoke the following commands from VSCode Command Palette: | |
`Cmake: Configure` followed by `Cmake: Build`. | |
Finally, you can invoke the following commands from VSCode Command Palette with `Cmake: Configure` followed by `Cmake: Build`. |
f7df3de
to
31ac425
Compare
Thanks @nejraselimovic for the quick reviews, much appreciated, can you please take another look. |
Summary
Adds documentation on how to setup CMake using VScode CMake Tools extension.
Clsose #16
Changes
Notes for Reviewers
...
Checklist
make server
, posted screenshots, verified external links.new-in-version
shortcode, according to the guidelines in CONTRIBUTING.