summaryrefslogtreecommitdiff
path: root/include/rune/util (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: refactor core API to be in proper styleDanny Holman2025-03-201-9/+9
| | | | | | | | Bring the rest of the core API to be in line with the project coding style. This commit also makes the coding style change formal by updating the coding style document in the documentation. Signed-off-by: Danny Holman <dholman@gymli.org>
* util: add a NORET macroDanny Holman2024-11-191-0/+7
| | | | | | | Add a NORET macro that expands out to either an attribute flag in the case of GCC/Clang, or to a declspec on Windows. Signed-off-by: Danny Holman <dholman@gymli.org>
* core: add an exit code listDanny Holman2024-11-191-0/+28
| | | | | | | Add a header file that lists common exit codes and use them in the abort function. Signed-off-by: Danny Holman <dholman@gymli.org>
* core: add documentation comments to API functionsDanny Holman2024-10-252-12/+41
| | | | | | | Add documentation comments to the functions and structures exposed through the Rune API. Signed-off-by: Danny Holman <dholman@gymli.org>
* build: break the engine into its subsystemsv0.60Danny Holman2024-09-153-0/+147
Break the source code into various subsystem directories. This allows certain subsystems to be disabled at compile time, if needed. Move the build system from raw Makefiles to a CMake generator. This drastically simplifies the build and requires only editing a single file, rather than the several make.config files in subsystem directories. Signed-off-by: Danny Holman <dholman@gymli.org>