fix(infra): gradle_run detecta android-sdk — issue 0076 #2

Open
dataforge wants to merge 538 commits from auto/0076-gradle-sdk-detect into master
3 changed files with 7 additions and 0 deletions
Showing only changes of commit d3d5af51f2 - Show all commits
@@ -6,6 +6,7 @@ add_imgui_app(primitives_gallery
demos_graph.cpp
demos_gfx.cpp
demos_text_editor.cpp
demos_gl_texture.cpp
# text_editor + file_watcher (issue 0025)
${CMAKE_SOURCE_DIR}/functions/core/text_editor.cpp
${CMAKE_SOURCE_DIR}/functions/core/file_watcher.cpp
@@ -46,9 +47,13 @@ add_imgui_app(primitives_gallery
${CMAKE_SOURCE_DIR}/functions/gfx/gl_framebuffer.cpp
${CMAKE_SOURCE_DIR}/functions/gfx/fullscreen_quad.cpp
${CMAKE_SOURCE_DIR}/functions/gfx/shader_canvas.cpp
# gl_texture_load (issue 0026) + stb_image
${CMAKE_SOURCE_DIR}/functions/gfx/gl_texture_load.cpp
${CMAKE_SOURCE_DIR}/vendor/stb/stb_image_impl.cpp
)
target_include_directories(primitives_gallery PRIVATE
${CMAKE_SOURCE_DIR}/vendor/imgui_text_edit
${CMAKE_SOURCE_DIR}/vendor/stb
)
if(WIN32)
+1
View File
@@ -30,6 +30,7 @@ void demo_graph();
// --- Gfx ---
void demo_shader_canvas();
void demo_gl_texture();
// --- Core (combined demo: text_editor + file_watcher) ---
void demo_text_editor();
+1
View File
@@ -57,6 +57,7 @@ static const DemoEntry k_demos[] = {
{"graph_viewport", "graph_viewport", "Viz", &gallery::demo_graph},
// Gfx (shaders_lab core)
{"shader_canvas", "shader_canvas", "Gfx", &gallery::demo_shader_canvas},
{"gl_texture", "gl_texture_load", "Gfx", &gallery::demo_gl_texture},
};
static constexpr int k_demo_count = sizeof(k_demos) / sizeof(k_demos[0]);