mirror of
https://github.com/dpogue/CMake-MetalShaderSupport.git
synced 2025-04-04 13:05:06 +00:00
Sorta working metallib resource copying
I'm going to need to write CMake helper functions to automate all of
this because it's way too much boilerplate 😕
This commit is contained in:
parent
36a5ad921e
commit
e50c51bacb
1 changed files with 11 additions and 1 deletions
|
@ -28,9 +28,19 @@ add_dependencies(ExampleApp ShaderBase)
|
|||
set_target_properties(ExampleApp PROPERTIES
|
||||
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/Info.plist"
|
||||
RESOURCE "${ExampleApp_RESOURCES}"
|
||||
XCODE_EMBED_RESOURCES ShaderBase
|
||||
)
|
||||
|
||||
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.28 AND ${CMAKE_GENERATOR} STREQUAL "Xcode")
|
||||
set_target_properties(ExampleApp PROPERTIES
|
||||
XCODE_EMBED_RESOURCES ShaderBase
|
||||
)
|
||||
else()
|
||||
add_custom_command(TARGET ExampleApp POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "$<TARGET_FILE:ShaderBase>" "$<TARGET_BUNDLE_CONTENT_DIR:ExampleApp>/Resources/$<TARGET_FILE_NAME:ShaderBase>"
|
||||
VERBATIM
|
||||
)
|
||||
endif()
|
||||
|
||||
target_link_libraries(ExampleApp
|
||||
PRIVATE
|
||||
"-framework Cocoa"
|
||||
|
|
Loading…
Add table
Reference in a new issue