-
Notifications
You must be signed in to change notification settings - Fork 1
Home
hadron13 edited this page Jul 8, 2024
·
3 revisions
The whole engine is split into different, swappable modules, which are libraries (.dll/.so) loaded at runtime by the core executable.
Each Module can communicate with other modules by the core config/resource system and interfaces.
- C compiler: gcc/clang/mingw-w64
- Cmake
- SDL required libraries (Linux)
git clone https://github.com/hadron13/Skeewb.git --recurse-submodules
cd Skeewb
gcc crane.c -o crane # clang works too
./crane # may be .exe in Windows
An example module can be created using the following commands:
./crane example
cd examplemod
gcc crane.c -o crane # examplemod's own crane
./crane
Check Getting Started for more information.