We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88830f0 commit 2fe519bCopy full SHA for 2fe519b
hello_imgui_cmake/hello_imgui_build_lib.cmake
@@ -552,10 +552,9 @@ function(him_sanity_checks)
552
endif()
553
554
if (no_backend_option_chosen AND NOT HELLOIMGUI_USING_VCPKG_TOOLCHAIN)
555
- # use SDL2 for emscripten and iOS, GLFW for the rest
556
- # (We may want to use glfw for emscripten too, using pongasoft/emscripten-glfw
557
- # which is quite good. However this requires more testing)
558
- if (EMSCRIPTEN OR IOS)
+ # use SDL2 for iOS, GLFW for the rest
+ # (We use pongasoft/emscripten-glfw under emscripten, which has good support for the clipboard)
+ if (IOS)
559
set(HELLOIMGUI_USE_SDL2 ON CACHE BOOL "" FORCE)
560
set(HELLOIMGUI_HAS_OPENGL3 ON CACHE BOOL "" FORCE)
561
else()
0 commit comments