blob: 662407ea46a02c2ee92472f94bbcb00ab6bc517e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Engine testing repository
This repo serves as testing grounds for feature development of the daw engine.
Building requirenments are the same as the engine itself, ie. assimp, glad,
glfw, and stb.
building currently requires building as shared library / debug build:
```
cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
cmake --build build
```
running:
```
LD_LIBRARY_PATH=build ./build/rogue
```
|