Update cmake

This commit is contained in:
2025-09-01 18:09:26 -04:00
parent d92dbc5b6d
commit d50fded04d
2 changed files with 9 additions and 1 deletions

View File

@@ -12,7 +12,10 @@ find_package(GLEW REQUIRED)
find_package(OpenGL REQUIRED)
file(GLOB SOURCES
include/imgui/*.cpp
include/imgui/imgui.cpp
include/imgui/imgui_draw.cpp
include/imgui/imgui_widgets.cpp
include/imgui/imgui_tables.cpp
include/imgui/backends/imgui_impl_sdl3.cpp
include/imgui/backends/imgui_impl_opengl3.cpp
include/tinyxml2/tinyxml2.cpp

View File

@@ -2661,6 +2661,11 @@ void imgui_update(Imgui* self)
}
}
if (map_find(self->anm2->layers, -1))
printf("Layers -1\n");
if (map_find(self->anm2->spritesheets, -1))
printf("Spritesheets -1\n");
}
void imgui_draw(void)