diff options
author | Danny Holman <dholman@gymli.org> | 2025-08-04 12:32:39 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2025-08-04 12:32:39 -0500 |
commit | 7a268ae92d44a9f27f4874e1e50413ee33b86dd3 (patch) | |
tree | 47574f2a1d6c6d469e19627aacbcae03ae615dee /editor | |
parent | render: vulkan: add check for null pointer for debug (diff) | |
download | rune-engine-7a268ae92d44a9f27f4874e1e50413ee33b86dd3.tar.gz rune-engine-7a268ae92d44a9f27f4874e1e50413ee33b86dd3.tar.zst rune-engine-7a268ae92d44a9f27f4874e1e50413ee33b86dd3.zip |
root: restructuring
Restructure the root of the project such that the engine is siloed from
the rest of the toolchain. Add two new subdirectories that contain an
editor and an offline profiling data analyzer.
Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'editor')
-rw-r--r-- | editor/CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/editor/CMakeLists.txt b/editor/CMakeLists.txt new file mode 100644 index 0000000..d633eb4 --- /dev/null +++ b/editor/CMakeLists.txt @@ -0,0 +1,13 @@ +set(SUBMODULE_EXECUTABLE rune-editor) + +list(APPEND SUBMODULE_FILES + src/editor.c +) + +list(APPEND SUBMODULE_LINK_LIBS + rune-engine +) + +set(SUBMODULE_HEADER_DIR ${CMAKE_SOURCE_DIR}/editor/include) + +include(${CMAKE_SOURCE_DIR}/CMake/SubmoduleDefines.cmake) |