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

https://github.com/masonlet/starlet-starter

Template for Starlet Game Projects
https://github.com/masonlet/starlet-starter

cpp gameengine opengl starlet

Last synced: 5 months ago
JSON representation

Template for Starlet Game Projects

Awesome Lists containing this project

README

          

# StarletStarter
Template for Starlet Game Projects

## Building the Project
This project uses **CMake**. Follow these steps to build:

### 1. Clone the Repository
```bash
git clone https://github.com/masonlet/starlet-starter.git
cd starlet-starter
```

### 2. Create a Build Directory and Generate Build Files
```bash
mkdir build
cd build
cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ..
```
`-DCMAKE_EXPORT_COMPILE_COMMANDS=ON` flag generates a `compile_commands.json` file
Can be safely omitted on Windows if you're using Visual Studio

### 3. Build the Project
- **Linux**:
```bash
make
```

- **Windows**:
```bash
cmake --build .
```
Or open the generated `.sln` file in Visual Studio and build the solution.