From 1024e592f762a8cfef29852f7c5da5b46241b16b Mon Sep 17 00:00:00 2001 From: Adrian Smith Date: Sun, 31 Mar 2024 15:18:07 -0700 Subject: [PATCH] fix skialib coordinate. --- build.clj | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/build.clj b/build.clj index eab026a..00cbd09 100644 --- a/build.clj +++ b/build.clj @@ -68,14 +68,15 @@ (io/file "csource" (str "libmembraneskia-" arch "." shared-suffix))) - coord (symbol "com.phronemophobic.membrane" - (str "skialib-" platform "-" resource-suffix)) - - glfw-platform (case platform + coord-platform (case platform "macos" "macosx" platform) + coord (symbol "com.phronemophobic.membrane" + (str "skialib-" coord-platform "-" resource-suffix)) + + glfw-dep (symbol "com.phronemophobic" - (str "glfw-" glfw-platform "-" resource-suffix)) + (str "glfw-" coord-platform "-" resource-suffix)) skia-basis (b/create-basis {:project {:deps {glfw-dep {:mvn/version "3.3.8"}}}})]