We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4c15a9 commit 5448f2cCopy full SHA for 5448f2c
1 file changed
test/CMakeLists.txt
@@ -65,6 +65,12 @@ set_target_properties(
65
if(CMAKE_SYSTEM_NAME STREQUAL Darwin)
66
set_target_properties(
67
${TARGET_NAME}
68
- PROPERTIES OUTPUT_NAME "gdexample.macos.${GODOTCPP_TARGET}" SUFFIX ".framework"
+ PROPERTIES
69
+ FRAMEWORK TRUE
70
+ FRAMEWORK_VERSION A
71
+ MACOSX_FRAMEWORK_IDENTIFIER com.yourname.gdexample
72
+ MACOSX_FRAMEWORK_BUNDLE_VERSION 1.0
73
+ MACOSX_FRAMEWORK_SHORT_VERSION_STRING 1.0
74
+ OUTPUT_NAME "gdexample.macos.${GODOTCPP_TARGET}"
75
)
76
endif()
0 commit comments