Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
imgui: disable heavier SDL2 and Vulkan backends, disable freetype by …
Browse files Browse the repository at this point in the history
…default
valgur committed Sep 24, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 9f6b90e commit 9a7c239
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions recipes/imgui/all/conanfile.py
Original file line number Diff line number Diff line change
@@ -75,20 +75,20 @@ class ImguiConan(ConanFile):
"backend_opengl2": True,
"backend_opengl3": True,
"backend_osx": True,
"backend_sdl2": True,
"backend_sdlrenderer2": True,
"backend_vulkan": True,
"backend_sdl2": False,
"backend_sdlrenderer2": False,
"backend_vulkan": False,
"backend_win32": True,
# Other options
"enable_freetype": True,
"enable_freetype_lunasvg": True,
"enable_freetype": False,
"enable_freetype_lunasvg": False,
"enable_metal_cpp": True,
"enable_osx_clipboard": True,
"enable_demo_windows": True,
"enable_debug_tools": True,
"enable_demo_windows": False,
"enable_debug_tools": False,
"use_bgra_packed_color": False,
"use_wchar32": False,
"build_programs": True,
"build_programs": False,
}

def export_sources(self):

0 comments on commit 9a7c239

Please sign in to comment.