Skip to content

Commit

Permalink
serf: disable heavier SDL2 and Vulkan backends, disable freetype by d…
Browse files Browse the repository at this point in the history
…efault
  • Loading branch information
valgur committed Sep 24, 2024
1 parent 9f6b90e commit 867b73a
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
Expand Up @@ -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):
Expand Down

0 comments on commit 867b73a

Please sign in to comment.