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/util/util.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/util/util.h (renamed from include/rune/util.h) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rune/util.h b/include/rune/util/util.h index 04429c4..dcf45e4 100644 --- a/include/rune/util.h +++ b/include/rune/util/util.h @@ -19,8 +19,8 @@ * 3. This notice may not be removed or altered from any source distribution. */ -#ifndef RUNE_UTIL_H -#define RUNE_UTIL_H +#ifndef RUNE_UTIL_UTIL_H +#define RUNE_UTIL_UTIL_H #include <assert.h> #include <stdint.h> |