Creating generic term renderer.

This commit is contained in:
2025-10-28 16:48:35 -05:00
parent 358fa9a493
commit b6aab03370
27 changed files with 770 additions and 155 deletions

View File

@@ -11,9 +11,16 @@ project(microrpg
)
set(CMAKE_C_STANDARD 99)
list(PREPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
set(ASSETS_DIR "${CMAKE_CURRENT_SOURCE_DIR}/assets" CACHE PATH "Path to the assets directory")
set(TOOLS_DIR "${CMAKE_CURRENT_SOURCE_DIR}/tools" CACHE PATH "Path to the tools directory")
# Executable
add_executable(microrpg)
# Tools
add_subdirectory(tools)
# Add sources
add_subdirectory(src)