Skip to content

Commit

Permalink
Disable iconv on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiashienzsch committed Apr 21, 2024
1 parent d35bcd0 commit 73f1287
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ def configure(self):
self.options["sdl"].pulse = False
self.options["sdl"].vulkan = False

if self.settings.os == "Windows":
self.options["sdl"].iconv = False


def generate(self):
src = os.path.join(self.dependencies["imgui"].package_folder, "res", "bindings")
dest = os.path.join(self.source_folder, "bindings")
Expand Down

0 comments on commit 73f1287

Please sign in to comment.