diff --git a/CHANGELOG.md b/CHANGELOG.md index 48ef673de..938bc9641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ #### Fixed - Fixed issue which caused watch app schemes to be generated incorrectly, preventing these apps from launching. [#798](https://github.com/yonaskolb/XcodeGen/pull/798) @daltonclaybrook +- Added build presets for the target type `framework.static`. [#819](https://github.com/yonaskolb/XcodeGen/pull/819) @acecilia ## 2.15.0 diff --git a/SettingPresets/Products/framework.static.yml b/SettingPresets/Products/framework.static.yml new file mode 100644 index 000000000..df100760b --- /dev/null +++ b/SettingPresets/Products/framework.static.yml @@ -0,0 +1,9 @@ +CURRENT_PROJECT_VERSION: 1 +DEFINES_MODULE: 'YES' +CODE_SIGN_IDENTITY: "" +DYLIB_COMPATIBILITY_VERSION: 1 +DYLIB_CURRENT_VERSION: 1 +VERSIONING_SYSTEM: "apple-generic" +INSTALL_PATH: "$(LOCAL_LIBRARY_DIR)/Frameworks" +DYLIB_INSTALL_NAME_BASE: "@rpath" +SKIP_INSTALL: 'YES'