Skip to content

Commit

Permalink
More conan stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiashienzsch committed Sep 30, 2023
1 parent 109cf73 commit b0708be
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,17 @@ def requirements(self):
self.requires("cairo/1.17.6")
self.requires("glfw/3.3.8")
self.requires("glew/2.2.0")
if self.settings.os != "Macos":
self.requires("sdl/2.28.2")
if self.settings.os != "Macos":
self.requires("sdl/2.28.2")

def configure(self):
self.options["imgui"].shared = False
if self.settings.os != "Emscripten":
self.options["cairo"].shared = False
self.options["glfw"].shared = False
self.options["glew"].shared = False
if self.settings.os != "Macos":
self.options["sdl"].alsa = False
self.options["sdl"].pulse = False
self.options["sdl"].vulkan = False
self.options["sdl"].xscrnsaver = False

self.options["cairo"].with_glib = False

def imports(self):
src = "res/bindings"
Expand Down

0 comments on commit b0708be

Please sign in to comment.