diff --git a/CHANGELOG.md b/CHANGELOG.md index e565b13..4846813 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.2] - 2021-07-16 +### Fixed +- Enabled embed bitcode on iOS libraries where it was still missing + ## [0.4.1] - 2021-07-02 ### Changed - Android NDK updated to r21e diff --git a/CMakeLists.txt b/CMakeLists.txt index d21d39e..2f56c79 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,6 +26,9 @@ target_link_libraries(ktx_unity if(APPLE) set_target_properties(ktx_unity PROPERTIES BUNDLE true) + if(KTX_EMBED_BITCODE) + target_compile_options(ktx_unity PRIVATE "-fembed-bitcode") + endif() elseif(WIN32) target_sources( ktx_unity diff --git a/KTX-Software b/KTX-Software index bc309fb..785d7f5 160000 --- a/KTX-Software +++ b/KTX-Software @@ -1 +1 @@ -Subproject commit bc309fb12244f68a82dfa294335239d9d77bf090 +Subproject commit 785d7f55adc35190aab7255c8b39f3c9b5ceb243