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
- Host: GitHub
- URL: https://github.com/masonlet/starlet-starter
- Owner: masonlet
- License: mit
- Created: 2025-09-15T16:09:46.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-11-10T08:49:15.000Z (6 months ago)
- Last Synced: 2025-11-10T10:22:24.922Z (6 months ago)
- Topics: cpp, gameengine, opengl, starlet
- Language: GLSL
- Homepage:
- Size: 13 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.