diff options
author | Danny Holman <dholman@gymli.org> | 2024-09-15 14:49:26 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2024-09-15 14:49:26 -0500 |
commit | 5b2c84c0b6880c66657e6fdd0f802a2187c25d05 (patch) | |
tree | f2e46a1dbb8ca1496245449893c6a08e980867c5 /include/rune/core/logging.h | |
parent | Add README file (diff) | |
download | rune-engine-5b2c84c0b6880c66657e6fdd0f802a2187c25d05.tar.gz rune-engine-5b2c84c0b6880c66657e6fdd0f802a2187c25d05.tar.zst rune-engine-5b2c84c0b6880c66657e6fdd0f802a2187c25d05.zip |
build: break the engine into its subsystemsv0.60
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>
Diffstat (limited to '')
-rw-r--r-- | include/rune/core/logging.h (renamed from include/rune/logging.h) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rune/logging.h b/include/rune/core/logging.h index 5b9aabf..6bb6470 100644 --- a/include/rune/logging.h +++ b/include/rune/core/logging.h @@ -19,10 +19,10 @@ * 3. This notice may not be removed or altered from any source distribution. */ -#ifndef RUNE_LOGGING_H -#define RUNE_LOGGING_H +#ifndef RUNE_CORE_LOGGING_H +#define RUNE_CORE_LOGGING_H -#include <rune/util.h> +#include <rune/util/types.h> enum log_level { LOG_FATAL, |