Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NuroDev/xmake-scaffold
🌱 Minimal Xmake C++ Project Template
https://github.com/NuroDev/xmake-scaffold
c cpp portfolio template template-project template-repository xmake
Last synced: 2 months ago
JSON representation
🌱 Minimal Xmake C++ Project Template
- Host: GitHub
- URL: https://github.com/NuroDev/xmake-scaffold
- Owner: NuroDev
- License: mit
- Created: 2020-12-23T14:45:05.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-23T11:33:09.000Z (almost 4 years ago)
- Last Synced: 2024-10-06T08:41:47.465Z (3 months ago)
- Topics: c, cpp, portfolio, template, template-project, template-repository, xmake
- Language: Lua
- Homepage:
- Size: 13.7 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🌱 Xmake Scaffold
A minimal Xmake project template
[![License](https://img.shields.io/badge/-MIT-f56565.svg?longCache=true&style=for-the-badge)](https://github.com/nurodev/xmake-scaffold/blob/main/LICENSE)
[![Build](https://img.shields.io/github/workflow/status/nurodev/xmake-scaffold/build?label=%20&logo=github&logoColor=white&style=for-the-badge)](https://github.com/NuroDev/xmake-scaffold/actions?query=workflow%3Abuild)
[![Xmake](https://img.shields.io/badge/-xmake-42b983.svg?longCache=true&style=for-the-badge)](https://xmake.io)## 🦄 Usage
Simply click the button below to get started:
[![Use this template](https://img.shields.io/badge/use%20this%20template-brightgreen.svg?longCache=true&style=for-the-badge)](https://github.com/nurodev/xmake-scaffold/generate)
## 🔨 Development
### 📋 Requirements
To setup and use the project you will need to have the following tools installed:
- [Git](https://git-scm.com/)
- [Xmake](https://xmake.io/)### ⬇️ Installation
Clone the repository
```bash
git clone https://github.com/nurodev/xmake-scaffold.git
```
Change the working directory to the newly cloned repository:
```bash
cd xmake-scaffold
```
Run xmake to install the dependencies & build the project:
```bash
xmake
```
Run the project after it has been built:
```bash
xmake run
```