EmilianC / Gemcutter-Project-Template

A template repository for new projects using the Gemcutter game framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gemcutter-Project-Template

A template repository for new projects using the Gemcutter game framework.

Quick Start

Click "Use this template" above to duplicate the repository into your own account. Then clone the new project and make sure to also pull the Gemcutter submodule:

> git submodule init
> git submodule update

Gemcutter will initialize what it needs, so there is no need to pull submodules recursively.

You'll need to use CMake in order to generate the project files and build your game. Make sure to make a build/ folder in the root directory for all outputs:

> mkdir build
> cd build
> cmake .. -DGAME_PROJECT_NAME=MyGame    # Configure the project with the name of your game

And that's it! You'll find your generated projects under the build/ folder.

About

A template repository for new projects using the Gemcutter game framework.

License:MIT License


Languages

Language:C++ 70.2%Language:CMake 29.8%