summaryrefslogtreecommitdiff
path: root/core/logging.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: logging: make color output optionalDanny Holman2024-10-021-8/+37
| | | | | | Add functions that toggle color output from the logging framework. Signed-off-by: Danny Holman <dholman@gymli.org>
* core: logging: print errors and warnings in colorDanny Holman2024-09-181-6/+18
| | | | | | | | Print warnings and errors in yellow and red respectively. This will make these messages stand out and make it easier for a developer to find them in the terminal window. Signed-off-by: Danny Holman <dholman@gymli.org>
* core: add several new filesDanny Holman2024-09-171-1/+1
| | | | | | | | | Add several new files to the core subsystem. These files will be the basic building blocks upon which the rest of the engine will sit atop of. These files will be present in all builds, including headless and platform builds. Signed-off-by: Danny Holman <dholman@gymli.org>
* Makefile: retool the build systemv0.55Danny Holman2024-08-301-1/+1
| | | | | | | | Retool the build system to be more modular and more flexible. Move all subsystems into separate directories and create make.config files that will conditionally compile based on information from the root Makefile. Signed-off-by: Danny Holman <dholman@gymli.org>
* core: refactor entire project rootDanny Holman2024-08-251-0/+40
Reorganize the project root such that each subsystem is placed into its own subdirectory. This allows the build system to select which subsystems to enable for a particular build. Signed-off-by: Danny Holman <dholman@gymli.org>