|
1 | 1 | # Code Make |
2 | 2 |
|
| 3 | +Build and run C, C++, Go, and Java projects with ease directly from Visual Studio Code. |
| 4 | + |
3 | 5 | [](https://marketplace.visualstudio.com/items?itemName=drizzy.code-make) |
4 | 6 | [](https://marketplace.visualstudio.com/items?itemName=drizzy.code-make) |
5 | 7 | [](https://marketplace.visualstudio.com/items?itemName=drizzy.code-make) |
6 | 8 |
|
7 | 9 | ## Features |
8 | 10 |
|
9 | | -Build and run C, C++, Golang, and Java projects directly from the VSCode interface with a single click. |
| 11 | +- One-click build and run support for: |
| 12 | + - C |
| 13 | + - C++ |
| 14 | + - Go |
| 15 | + - Java |
| 16 | +- Easy integration into your existing Make-based workflows. |
10 | 17 |
|
11 | 18 | ## Requirements |
12 | 19 |
|
13 | | -- You must have `make` installed on your computer to manage build tasks. [See instructions](docs/SETUP.md#install-make) |
14 | | -- You must have `GCC` installed to compile and run C/C++ programs. [See instructions](docs/SETUP.md#install-gcc) |
15 | | -- You must have `Go` installed to compile and run Go programs. [See instructions](docs/SETUP.md#install-go) |
16 | | -- You must have `Java` installed to compile and run Java programs. [See instructions](docs/SETUP.md#install-java) |
| 20 | +Make sure the following tools are installed on your system: |
| 21 | + |
| 22 | +- `make`: For managing build tasks. [Installation guide](docs/SETUP.md#install-make) |
| 23 | +- `GCC`: For compiling and running C/C++ programs. [Installation guide](docs/SETUP.md#install-gcc) |
| 24 | +- `Go`: For compiling and running Go programs. [Installation guide](docs/SETUP.md#install-go) |
| 25 | +- `Java`: For compiling and running Java programs. [Installation guide](docs/SETUP.md#install-java) |
| 26 | + |
| 27 | +## How to Use |
| 28 | + |
| 29 | +1. Install the extension. |
| 30 | +2. Click the gear ⚙️ icon in the bottom right to choose your language (C, C++, Go, or Java). |
| 31 | +3. Click the play ▶ icon to build and run your program. |
17 | 32 |
|
18 | | -## How to use |
| 33 | +## Keyboard Shortcuts |
| 34 | + |
| 35 | +You can also use the following shortcuts: |
| 36 | + |
| 37 | +| Action | Shortcut | |
| 38 | +|-----------------|------------------| |
| 39 | +| Create Project | `Ctrl+Alt+C` | |
| 40 | +| Run Project | `Ctrl+Alt+R` | |
| 41 | +| Stop Execution | `Ctrl+Alt+S` | |
19 | 42 |
|
20 | | -After installing the extension, click the gear ⚙️ compile symbol in the bottom right corner and select your project language: C, C++, Go or Java. Then, use the play symbol ▶ to run and run your program. |
21 | 43 |
|
22 | 44 | ## Release Notes |
23 | 45 |
|
24 | | -Refer to [CHANGELOG](CHANGELOG.md) for detailed release notes. |
| 46 | +See [CHANGELOG.md](CHANGELOG.md) for a complete list of changes. |
| 47 | + |
| 48 | +## Credits |
| 49 | + |
| 50 | +The icon used in this extension is ["makefile"](https://iconduck.com/icons/158850/makefile) by Iconduck, available under the [MIT license](https://opensource.org/licenses/MIT). |
0 commit comments