fixed ordering problem, but have a wier flicker in non editor mode

This commit is contained in:
2026-05-03 22:09:23 +02:00
parent 7198e32a7f
commit b817a29356
5 changed files with 20 additions and 9 deletions

View File

@@ -72,6 +72,13 @@ file(GLOB CPP_SOURCE
"${PROJECT_SOURCE_DIR}/TSE-RTS/src/*/*/*/*.c"
)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
message(STATUS "Debug build")
add_compile_options(-g)
else()
message(STATUS "Not a Debug build")
endif()
#project def
add_executable(TSE-RTS ${CPP_SOURCE})