Remove extra link flags to fix Windows use

Closes #2.
This commit is contained in:
Darryl Pogue 2024-06-10 21:29:07 -07:00
parent 3870cb1d50
commit 0f98ecbdd9
No known key found for this signature in database
GPG key ID: CB824715C3E6FD41
2 changed files with 2 additions and 3 deletions

View file

@ -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

View file

@ -63,7 +63,7 @@ if(NOT CMAKE_Metal_COMPILE_OBJECT)
endif()
if(NOT CMAKE_Metal_CREATE_SHARED_LIBRARY)
set(CMAKE_Metal_CREATE_SHARED_LIBRARY "<CMAKE_Metal_COMPILER> <CMAKE_SHARED_LIBRARY_Metal_FLAGS> <LANGUAGE_COMPILE_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_Metal_FLAGS> -o <TARGET> <OBJECTS> <LINK_LIBRARIES>")
set(CMAKE_Metal_CREATE_SHARED_LIBRARY "<CMAKE_Metal_COMPILER> <CMAKE_SHARED_LIBRARY_Metal_FLAGS> <LANGUAGE_COMPILE_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_Metal_FLAGS> -o <TARGET> <OBJECTS> <LINK_LIBRARIES>")
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 "<CMAKE_Metal_COMPILER> <FLAGS> <CMAKE_Metal_LINK_FLAGS> <LINK_FLAGS> -o <TARGET> <OBJECTS> <LINK_LIBRARIES>")
set(CMAKE_Metal_LINK_EXECUTABLE "<CMAKE_Metal_COMPILER> <FLAGS> <CMAKE_Metal_LINK_FLAGS> -o <TARGET> <OBJECTS> <LINK_LIBRARIES>")
endif()
set(CMAKE_Metal_INFORMATION_LOADED 1)