diff options
| -rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..662407e --- /dev/null +++ b/README.md @@ -0,0 +1,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 +``` |
