From 0f98ecbdd93748c088f6276280ec9b87b98a6f31 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Mon, 10 Jun 2024 21:29:07 -0700 Subject: [PATCH] Remove extra link flags to fix Windows use Closes #2. --- README.md | 1 - cmake/CMakeMetalInformation.cmake | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3ea3b48..08972ed 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,6 @@ Remaining Work -------------- * Handling the SDK and min-version parameters -* Testing that this works with the Windows version of the Metal tools Licence diff --git a/cmake/CMakeMetalInformation.cmake b/cmake/CMakeMetalInformation.cmake index 81abe22..7b0c001 100644 --- a/cmake/CMakeMetalInformation.cmake +++ b/cmake/CMakeMetalInformation.cmake @@ -63,7 +63,7 @@ if(NOT CMAKE_Metal_COMPILE_OBJECT) endif() if(NOT CMAKE_Metal_CREATE_SHARED_LIBRARY) - set(CMAKE_Metal_CREATE_SHARED_LIBRARY " -o ") + set(CMAKE_Metal_CREATE_SHARED_LIBRARY " -o ") endif() if(NOT CMAKE_Metal_CREATE_SHARED_MODULE) @@ -72,7 +72,7 @@ endif() if(NOT CMAKE_Metal_LINK_EXECUTABLE) # Metal shaders don't really have "executables", but we need this for the try_compile to work properly, so we'll just have it output a metallib file - set(CMAKE_Metal_LINK_EXECUTABLE " -o ") + set(CMAKE_Metal_LINK_EXECUTABLE " -o ") endif() set(CMAKE_Metal_INFORMATION_LOADED 1)