From 0a6d91208ac4f408fb6fa0f36f0aceef677d2f6c Mon Sep 17 00:00:00 2001 From: Anders Cedronius Date: Sun, 23 Jun 2024 23:46:14 +0200 Subject: [PATCH] add HELLO_IMGUI_LINK_LIBRARIES to hello_imgui_add_app.cmake --- hello_imgui_cmake/hello_imgui_add_app.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello_imgui_cmake/hello_imgui_add_app.cmake b/hello_imgui_cmake/hello_imgui_add_app.cmake index 9cc9d8ce..15c318a8 100644 --- a/hello_imgui_cmake/hello_imgui_add_app.cmake +++ b/hello_imgui_cmake/hello_imgui_add_app.cmake @@ -140,7 +140,7 @@ function(hello_imgui_prepare_app app_name assets_location) hello_imgui_bundle_assets(${app_name} ${assets_location}) hello_imgui_platform_customization(${app_name} ${assets_location}) - target_link_libraries(${app_name} PRIVATE hello-imgui::hello_imgui) + target_link_libraries(${app_name} PRIVATE hello-imgui::hello_imgui ${HELLO_IMGUI_LINK_LIBRARIES}) if (ANDROID AND HELLOIMGUI_CREATE_ANDROID_STUDIO_PROJECT) set(apkCMake_applicationIdUrlPart ${HELLO_IMGUI_BUNDLE_IDENTIFIER_URL_PART})