From 7ec4bf7c73869fbf641dd642d8e413afc2e0a829 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Mon, 14 Oct 2024 21:04:19 -0500 Subject: core: mod: create a mod interface Create a skeleton mod interface so that the engine can load shared libraries or DLLs as in-game mods. The API should be compiler agnostic as much as possible. Signed-off-by: Danny Holman --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c9ce1d..dda668d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,9 @@ list(APPEND SOURCE_FILES core/callbacks.c core/init.c core/logging.c + core/mod.c core/network.c + core/thread.c ) list(APPEND SOURCE_FILES -- cgit v1.2.3