All checks were successful
Gol CI / build (push) Successful in 2m42s
This ensure the project builds on windows
38 lines
569 B
Markdown
38 lines
569 B
Markdown
# GameOfLifeEditor
|
|
|
|
This is a simple Game Of Life editor written in C++ with raylib & dearImGUI
|
|
|
|
---
|
|
|
|

|
|
|
|
---
|
|
|
|
## How to compile the project
|
|
|
|
### Linux
|
|
|
|
Ensure you have g++, cmake and the dependencies of raylib
|
|
|
|
```shell
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
```
|
|
|
|
### Windows
|
|
|
|
If you're compiling for windows on linux, you can use mingw-w64
|
|
|
|
```shell
|
|
sudo apt install mingw-w64
|
|
mkdir build
|
|
cd build
|
|
cmake .. -DCMAKE_TOOLCHAIN_FILE=../toolchain-ming-w64-x86_64.cmake
|
|
make
|
|
```
|
|
If you're compiling for windows on windows, use your usual cmake workflow
|
|
|
|
|