Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```