Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM mcr.microsoft.com/devcontainers/cpp:debian

RUN curl -fsSL https://xmake.io/shget.text | bash
ENV PATH="/root/.local/bin:${PATH}"
19 changes: 19 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "C++",
"build": { "dockerfile": "Dockerfile" },
"customizations": {
"vscode": {
"extensions": [
"tboox.xmake-vscode",
"ms-vscode.cpptools-extension-pack",
"yzhang.markdown-all-in-one",
"redhat.vscode-yaml",
"esbenp.prettier-vscode",
"eamodio.gitlens",
"github.vscode-pull-request-github",
"github.vscode-github-actions",
"github.copilot"
]
}
}
}
5 changes: 0 additions & 5 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ The simplest C/C++ project template for beginners.

2. Click the **[<kbd>Open in GitHub codespaces</kbd>][2] button** on the top of ReadMe file, then an **online VS Code development environment** will be started immediately

3. Run following command in VS Code terminal to install XMake:
```bash
curl -fsSL https://xmake.io/shget.text | bash
```

## Install minimal All-in-One Development Environment in your computer

### Windows
Expand Down