mirror of
https://github.com/dpogue/CMake-MetalShaderSupport.git
synced 2025-04-04 13:05:06 +00:00
parent
3870cb1d50
commit
0f98ecbdd9
2 changed files with 2 additions and 3 deletions
|
@ -143,7 +143,6 @@ Remaining Work
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
* Handling the SDK and min-version parameters
|
* Handling the SDK and min-version parameters
|
||||||
* Testing that this works with the Windows version of the Metal tools
|
|
||||||
|
|
||||||
|
|
||||||
Licence
|
Licence
|
||||||
|
|
|
@ -63,7 +63,7 @@ if(NOT CMAKE_Metal_COMPILE_OBJECT)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT CMAKE_Metal_CREATE_SHARED_LIBRARY)
|
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()
|
endif()
|
||||||
|
|
||||||
if(NOT CMAKE_Metal_CREATE_SHARED_MODULE)
|
if(NOT CMAKE_Metal_CREATE_SHARED_MODULE)
|
||||||
|
@ -72,7 +72,7 @@ endif()
|
||||||
|
|
||||||
if(NOT CMAKE_Metal_LINK_EXECUTABLE)
|
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
|
# 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()
|
endif()
|
||||||
|
|
||||||
set(CMAKE_Metal_INFORMATION_LOADED 1)
|
set(CMAKE_Metal_INFORMATION_LOADED 1)
|
||||||
|
|
Loading…
Add table
Reference in a new issue