mirror of
https://github.com/dpogue/CMake-MetalShaderSupport.git
synced 2025-04-04 13:05:06 +00:00
Fixup some Xcode app bundle stuff
This should build properly with non-Xcode generators now, although the resulting app doesn't seem to be rendering properly...
This commit is contained in:
parent
e50c51bacb
commit
0c52d6e2af
2 changed files with 13 additions and 4 deletions
|
@ -27,11 +27,13 @@ add_dependencies(ExampleApp ShaderBase)
|
|||
|
||||
set_target_properties(ExampleApp PROPERTIES
|
||||
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/Info.plist"
|
||||
RESOURCE "${ExampleApp_RESOURCES}"
|
||||
MACOSX_BUNDLE_GUI_IDENTIFIER ca.dpogue.metaltest.example
|
||||
XCODE_ATTRIBUTE_PRODUCT_BUNDLE_IDENTIFIER ca.dpogue.metaltest.example
|
||||
)
|
||||
|
||||
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.28 AND ${CMAKE_GENERATOR} STREQUAL "Xcode")
|
||||
set_target_properties(ExampleApp PROPERTIES
|
||||
RESOURCE "${ExampleApp_RESOURCES}"
|
||||
XCODE_EMBED_RESOURCES ShaderBase
|
||||
)
|
||||
else()
|
||||
|
@ -39,6 +41,13 @@ else()
|
|||
COMMAND ${CMAKE_COMMAND} -E copy "$<TARGET_FILE:ShaderBase>" "$<TARGET_BUNDLE_CONTENT_DIR:ExampleApp>/Resources/$<TARGET_FILE_NAME:ShaderBase>"
|
||||
VERBATIM
|
||||
)
|
||||
|
||||
find_program(IBTOOL ibtool HINTS "/usr/bin" "${OSX_DEVELOPER_ROOT}/usr/bin")
|
||||
add_custom_command(TARGET ExampleApp POST_BUILD
|
||||
COMMAND ${IBTOOL} --output-format human-readable-text --compile "$<TARGET_BUNDLE_CONTENT_DIR:ExampleApp>/Resources/Main.storyboardc" "${CMAKE_CURRENT_SOURCE_DIR}/Main.storyboard"
|
||||
COMMENT "Compiling Main.storyboard to Main.storyboardc"
|
||||
VERBATIM
|
||||
)
|
||||
endif()
|
||||
|
||||
target_link_libraries(ExampleApp
|
||||
|
|
|
@ -5,15 +5,15 @@
|
|||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</string>
|
||||
<string>${MACOSX_BUNDLE_EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string></string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||
<string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>$(PRODUCT_NAME)</string>
|
||||
<string>${MACOSX_BUNDLE_BUNDLE_NAME}</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
|
|
Loading…
Add table
Reference in a new issue