Skip to content
Matthew Albrecht edited this page May 23, 2019 · 1 revision

About

Setup for a game using Acid allows for a lot of freedom, this guide will show one way to create a game project. This guide will assume you understand basic git commands and have a IDE of choice already set up (if you can compile and run Acid tests you will be good).

All steps here will be followed here: https://github.com/EQMG/Acid-Guide

Git

  • Create your game project folder and run 'git init'.
  • When you want to push your code follow this guide.

CMake

We will need 3 CMake files, the first one will download Acid, and the second one is used for game sources and copy Resources.

Sources

To test if Acid is building and linking you can write a simple hello world Main.cpp file (reload cmake when adding files). if everything is working correctly it will link and run, if you are using the Main file provided on Github you will need to follow the next step otherwise assets will not be found.

Clone this wiki locally