From e0455d6932f4b9ad2bafdf719aea059951f476e8 Mon Sep 17 00:00:00 2001 From: Martmists Date: Fri, 19 Jul 2024 00:05:49 +0200 Subject: [PATCH] fix paths again Signed-off-by: Martmists --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1e85aa7..6914281 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -80,8 +80,8 @@ kotlin { extraOpts("-Xsource-compiler-option", "-O2") if (target.name.startsWith("macos")) { - extraOpts("-Xsource-compiler-option", "-isystem=/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include") - extraOpts("-Xsource-compiler-option", "-isysroot=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk") + extraOpts("-Xsource-compiler-option", "-isystem/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include") + extraOpts("-Xsource-compiler-option", "-isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk") } val cppSource = projectDir.resolve("src/lib/cpp").listFiles().filter { it.extension == "cpp" }.map { it.absolutePath }