I installed MacOS Sonoma on HyperV, installed XCode and used the following commands to check compiler and SDK versions:
admin@son ~ % xcode-select -print-path
/Applications/Xcode.app/Contents/Developer
admin@son ~ % xcrun -sdk macosx -find clang
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
admin@son ~ % clang --version
Apple clang version 15.0.0 (clang-1500.3.9.4)
Target: x86_64-apple-darwin23.4.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
admin@son ~ % xcrun -sdk macosx --show-sdk-path
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk
Installed Command Line Tools:
xcode-select --install
xcode-select: note: install requested for command line developer tools
Installed MacPorts and CMake and Ninja:
sudo port install cmake
sudo port install ninja
cmake --version
cmake version 3.29.2
CMake suite maintained and supported by Kitware (kitware.com/cmake).
Built QT for MacOS:
mkdir -p dev/repos && cd $_
export MY_QT_VERSION=6.7.0
tar xf ~/Downloads/qt-everywhere-src-${MY_QT_VERSION}.tar.xz
cd ~/dev
mkdir libs
mkdir -p build/qt && cd $_
export MY_QT_SRC_DIR=~/dev/repos/qt-everywhere-src-${MY_QT_VERSION}
export MY_MODE=release
#export MY_MODE=debug
export MY_INSTALL_PATH=~/dev/libs/QT6/${MY_MODE}/MacOs
${MY_QT_SRC_DIR}/configure -prefix $MY_INSTALL_PATH -c++std c++20 -opensource -confirm-license \
-static -static-runtime -${MY_MODE} -force-debug-info \
-no-openssl -securetransport \
-skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity \
-skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua \
-skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects \
-skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland \
-skip qtwebchannel -skip qtwebengine -skip qtwebview -skip qtquick3dphysics -skip qtspeech -skip qtlocation \
-skip qthttpserver -skip qtgraphs \
-- -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" \
&& cmake --build . --parallel \
&& cmake --install .
+ mkdir -p qtbase
+ cd qtbase
+ exec /Users/admin/dev/repos/qt-everywhere-src-6.7.0/qtbase/configure -top-level -prefix /Users/admin/dev/libs/QT6/release/MacOs -c++std c++20 -opensource -confirm-license -static -static-runtime -release -force-debug-info -no-openssl -securetransport -skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity -skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua -skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland -skip qtwebchannel -skip qtwebengine -skip qtwebview -skip qtquick3dphysics -skip qtspeech -skip qtlocation -skip qthttpserver -skip qtgraphs -- '-DCMAKE_OSX_ARCHITECTURES=x86_64;arm64'
'/opt/local/bin/cmake' '-DBUILD_qt3d=OFF' '-DBUILD_qt5compat=OFF' '-DBUILD_qtactiveqt=OFF' '-DBUILD_qtcharts=OFF' '-DBUILD_qtcoap=OFF' '-DBUILD_qtconnectivity=OFF' '-DBUILD_qtdatavis3d=OFF' '-DBUILD_qtdoc=OFF' '-DBUILD_qtlottie=OFF' '-DBUILD_qtmqtt=OFF' '-DBUILD_qtnetworkauth=OFF' '-DBUILD_qtopcua=OFF' '-DBUILD_qtserialport=OFF' '-DBUILD_qtpositioning=OFF' '-DBUILD_qtquicktimeline=OFF' '-DBUILD_qtquick3d=OFF' '-DBUILD_qtremoteobjects=OFF' '-DBUILD_qtscxml=OFF' '-DBUILD_qtsensors=OFF' '-DBUILD_qtserialbus=OFF' '-DBUILD_qtvirtualkeyboard=OFF' '-DBUILD_qtwayland=OFF' '-DBUILD_qtwebchannel=OFF' '-DBUILD_qtwebengine=OFF' '-DBUILD_qtwebview=OFF' '-DBUILD_qtquick3dphysics=OFF' '-DBUILD_qtspeech=OFF' '-DBUILD_qtlocation=OFF' '-DBUILD_qthttpserver=OFF' '-DBUILD_qtgraphs=OFF' '-DCMAKE_OSX_ARCHITECTURES=x86_64;arm64' '-DQT_INTERNAL_CALLED_FROM_CONFIGURE:BOOL=TRUE' '-DBUILD_SHARED_LIBS=OFF' '-DCMAKE_INSTALL_PREFIX=/Users/admin/dev/libs/QT6/release/MacOs' '-DCMAKE_BUILD_TYPE=RelWithDebInfo' '-DINPUT_cxx14=yes' '-DINPUT_cxx17=yes' '-DINPUT_cxx20=yes' '-DINPUT_cxx2b=no' '-DINPUT_static_runtime=yes' '-DINPUT_openssl=no' '-DINPUT_securetransport=yes' '-G' 'Ninja' '/Users/admin/dev/repos/qt-everywhere-src-6.7.0'
-- The CXX compiler identification is AppleClang 15.0.0.15000309
-- The C compiler identification is AppleClang 15.0.0.15000309
-- The ASM compiler identification is AppleClang
-- Found assembler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Checking dependencies of submodule 'qtbase'
-- Checking dependencies of submodule 'qtimageformats'
-- Checking dependencies of submodule 'qtlanguageserver'
-- Checking dependencies of submodule 'qtshadertools'
-- Checking dependencies of submodule 'qtsvg'
-- Checking dependencies of submodule 'qtdeclarative'
-- Checking dependencies of submodule 'qtmultimedia'
-- Skipping optional dependency 'qtquick3d' of 'qtmultimedia', because building 'qtquick3d' was explicitly disabled.
-- Checking dependencies of submodule 'qtwebsockets'
-- Checking dependencies of submodule 'qttools'
-- Skipping optional dependency 'qtactiveqt' of 'qttools', because building 'qtactiveqt' was explicitly disabled.
-- Checking dependencies of submodule 'qtgrpc'
-- Checking dependencies of submodule 'qtquickeffectmaker'
-- Skipping optional dependency 'qtquick3d' of 'qtquickeffectmaker', because building 'qtquick3d' was explicitly disabled.
-- Checking dependencies of submodule 'qttranslations'
-- Configuring submodule 'qtbase'
-- [QtBase] CMAKE_BUILD_TYPE was already explicitly set to: 'RelWithDebInfo'
-DCMAKE_C_FLAGS_DEBUG=-g
-DCMAKE_C_FLAGS_RELEASE=-O3 -DNDEBUG
-DCMAKE_C_FLAGS_RELWITHDEBINFO=-O2 -g -DNDEBUG
-DCMAKE_CXX_FLAGS_DEBUG=-g
-DCMAKE_CXX_FLAGS_RELEASE=-O3 -DNDEBUG
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO=-O2 -g -DNDEBUG
-DCMAKE_C_STANDARD=11
-DCMAKE_C_STANDARD_REQUIRED=ON
-DCMAKE_CXX_STANDARD=17
-DCMAKE_CXX_STANDARD_REQUIRED=ON
-DCMAKE_MODULE_PATH:STRING=/Users/admin/dev/repos/qt-everywhere-src-6.7.0/qtbase/cmake/platforms
-DCMAKE_OSX_ARCHITECTURES:STRING=x86_64
-DCMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH:BOOL=OFF
-- Configuring submodule 'qtimageformats'
-- Configuring submodule 'qtlanguageserver'
-- Configuring submodule 'qtshadertools'
-- Configuring submodule 'qtsvg'
-- Configuring submodule 'qtdeclarative'
CMake Warning at qtbase/cmake/QtFindPackageHelpers.cmake:477 (message):
Could not find target Qt6::QuickControls2MacOSStyleImpl to query its
package name. Defaulting to package name Qt6QuickControls2MacOSStyleImpl.
Consider re-arranging the project structure to ensure the target exists by
this point.
Call Stack (most recent call first):
qtbase/cmake/QtFindPackageHelpers.cmake:520 (qt_internal_get_package_name_of_target)
qtbase/cmake/QtTargetHelpers.cmake:226 (qt_register_target_dependencies)
qtbase/cmake/QtPluginHelpers.cmake:343 (qt_internal_extend_target)
qtdeclarative/src/qml/Qt6QmlBuildInternals.cmake:217 (qt_internal_add_plugin)
qtdeclarative/src/quickcontrols/macos/CMakeLists.txt:42 (qt_internal_add_qml_module)
CMake Warning at qtbase/cmake/QtFindPackageHelpers.cmake:477 (message):
Could not find target Qt6::QuickControls2IOSStyleImpl to query its package
name. Defaulting to package name Qt6QuickControls2IOSStyleImpl. Consider
re-arranging the project structure to ensure the target exists by this
point.
Call Stack (most recent call first):
qtbase/cmake/QtFindPackageHelpers.cmake:520 (qt_internal_get_package_name_of_target)
qtbase/cmake/QtTargetHelpers.cmake:226 (qt_register_target_dependencies)
qtbase/cmake/QtPluginHelpers.cmake:343 (qt_internal_extend_target)
qtdeclarative/src/qml/Qt6QmlBuildInternals.cmake:217 (qt_internal_add_plugin)
qtdeclarative/src/quickcontrols/ios/CMakeLists.txt:60 (qt_internal_add_qml_module)
-- Configuring submodule 'qtquicktimeline'
-- Configuring submodule 'qtquick3d'
-- Configuring submodule 'qtmultimedia'
-- Configuring submodule 'qt3d'
-- Configuring submodule 'qt5compat'
-- Configuring submodule 'qtactiveqt'
-- Configuring submodule 'qtcharts'
-- Configuring submodule 'qtcoap'
-- Configuring submodule 'qtconnectivity'
-- Configuring submodule 'qtdatavis3d'
-- Configuring submodule 'qtgraphs'
-- Configuring submodule 'qtwebsockets'
CMake Warning (dev) at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:423 (message):
INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
Please port your module to use declarative type registration.
Call Stack (most recent call first):
qtwebsockets/src/imports/qmlwebsockets/CMakeLists.txt:4 (qt_internal_add_qml_module)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Configuring submodule 'qthttpserver'
-- Configuring submodule 'qtserialport'
-- Configuring submodule 'qtpositioning'
-- Configuring submodule 'qtlocation'
-- Configuring submodule 'qttools'
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find Clang (missing: Clang_DIR)
-- Configuring submodule 'qtwebchannel'
-- Configuring submodule 'qtwebengine'
-- Configuring submodule 'qtdoc'
-- Configuring submodule 'qtgrpc'
-- Configuring submodule 'qtlottie'
-- Configuring submodule 'qtmqtt'
-- Configuring submodule 'qtnetworkauth'
-- Configuring submodule 'qtopcua'
-- Configuring submodule 'qtquick3dphysics'
-- Configuring submodule 'qtquickeffectmaker'
-- Could NOT find Qt6Quick3DGlslParserPrivate (missing: Qt6Quick3DGlslParserPrivate_DIR)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6/Qt6Config.cmake:224 (message):
Failed to find optional Qt component "Quick3DGlslParserPrivate".
Expected Config file at
"/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6Quick3DGlslParserPrivate/Qt6Quick3DGlslParserPrivateConfig.cmake"
does NOT exist
Call Stack (most recent call first):
qtquickeffectmaker/CMakeLists.txt:20 (find_package)
[QQEffectMaker] Note: No Quick3DGlslParserPrivate available, building without syntax highlighting
Nodes path: ./qml/QtQuickEffectMaker/defaultnodes
-- Configuring submodule 'qtremoteobjects'
-- Configuring submodule 'qtscxml'
-- Configuring submodule 'qtsensors'
-- Configuring submodule 'qtserialbus'
-- Configuring submodule 'qtspeech'
-- Configuring submodule 'qttranslations'
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/repos/qt-everywhere-src-6.7.0/qttranslations/translations/qt_sv.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/assistant_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/designer_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/linguist_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qt_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qt_help_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtbase_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtconnectivity_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtdeclarative_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtlocation_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtmultimedia_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtserialport_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtwebengine_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtwebsockets_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
-- Configuring submodule 'qtvirtualkeyboard'
-- Configuring submodule 'qtwayland'
-- Configuring submodule 'qtwebview'
-- Configuration summary shown below. It has also been written to /Users/admin/dev/build/qt/config.summary
-- Configure with --log-level=STATUS or higher to increase CMake's message verbosity. The log level does not persist across reconfigurations.
-- Configure summary:
Building for: macx-clang (x86_64;arm64), x86_64 features: cx16 sse3 ssse3 sse4.1)
Compiler: clang (Apple) 15.0.0.15000309
Build options:
Mode ................................... release (with debug info)
Optimize release build for size ........ no
Fully optimize release builds (-O3) .... no
Building shared libraries .............. no
Using ccache ........................... no
Unity Build ............................ no
Relocatable ............................ no
Using precompiled headers .............. yes
Using Link Time Optimization (LTCG) .... no
Using Intel CET ........................ no
Target compiler supports:
x86 Intrinsics ....................... Basic VAES AVX512VBMI2
Sanitizers:
Addresses ............................ no
Threads .............................. no
Memory ............................... no
Fuzzer (instrumentation only) ........ no
Undefined ............................ no
Build parts ............................ libs tools
Install examples sources ............... no
App store compliance ................... no
Qt modules and options:
Qt Concurrent .......................... yes
Qt D-Bus ............................... yes
Qt D-Bus directly linked to libdbus .... no
Qt Gui ................................. yes
Qt Network ............................. yes
Qt PrintSupport ........................ yes
Qt Sql ................................. yes
Qt Testlib ............................. yes
Qt Widgets ............................. yes
Qt Xml ................................. yes
Support enabled for:
Using pkg-config ....................... no
Using vcpkg ............................ no
udev ................................... no
OpenSSL ................................ no
Qt directly linked to OpenSSL ........ no
OpenSSL 1.1 ............................ no
OpenSSL 3.0 ............................ no
Using system zlib ...................... yes
Zstandard support ...................... no
Thread support ......................... yes
Common build options:
Linker can resolve circular dependencies yes
Qt Core:
backtrace .............................. yes
DoubleConversion ....................... yes
Using system DoubleConversion ........ no
GLib ................................... no
ICU .................................... no
Using system libb2 ..................... no
Built-in copy of the MIME database ..... yes
Application permissions ................ yes
Defaulting legacy IPC to POSIX ......... no
Tracing backend ........................ <none>
OpenSSL based cryptographic hash ....... no
Logging backends:
journald ............................. no
syslog ............................... no
slog2 ................................ no
PCRE2 .................................. yes
Using system PCRE2 ................... no
Qt Sql:
SQL item models ........................ yes
Qt Network:
getifaddrs() ........................... yes
IPv6 ifname ............................ yes
libproxy ............................... no
SecureTransport ........................ yes
DTLS ................................... no
OCSP-stapling .......................... no
SCTP ................................... no
Use system proxies ..................... yes
GSSAPI ................................. yes
Brotli Decompression Support ........... no
qIsEffectiveTLD() ...................... yes
Built-in publicsuffix database ....... yes
System publicsuffix database ......... no
Core tools:
Android deployment tool ................ yes
macOS deployment tool .................. yes
Windows deployment tool ................ no
qmake .................................. yes
Qt Gui:
Accessibility .......................... yes
FreeType ............................... yes
Using system FreeType ................ no
HarfBuzz ............................... yes
Using system HarfBuzz ................ no
Fontconfig ............................. no
Image formats:
GIF .................................. yes
ICO .................................. yes
JPEG ................................. yes
Using system libjpeg ............... no
PNG .................................. yes
Using system libpng ................ no
Text formats:
HtmlParser ........................... yes
CssParser ............................ yes
OdfWriter ............................ yes
MarkdownReader ....................... yes
Using system libmd4c ............... no
MarkdownWriter ....................... yes
EGL .................................... no
OpenVG ................................. no
OpenGL:
Desktop OpenGL ....................... yes
OpenGL ES 2.0 ........................ no
OpenGL ES 3.0 ........................ no
OpenGL ES 3.1 ........................ no
OpenGL ES 3.2 ........................ no
Vulkan ................................. no
Session Management ..................... yes
Features used by QPA backends:
evdev .................................. no
libinput ............................... no
HiRes wheel support in libinput ........ no
INTEGRITY HID .......................... no
mtdev .................................. no
tslib .................................. no
xkbcommon .............................. no
X11 specific:
XLib ................................. no
XCB Xlib ............................. no
EGL on X11 ........................... no
xkbcommon-x11 ........................ no
xcb-sm ............................... no
QPA backends:
DirectFB ............................... no
EGLFS .................................. no
EGLFS details:
EGLFS OpenWFD ........................ no
EGLFS i.Mx6 .......................... no
EGLFS i.Mx6 Wayland .................. no
EGLFS RCAR ........................... no
EGLFS EGLDevice ...................... no
EGLFS GBM ............................ no
EGLFS VSP2 ........................... no
EGLFS Mali ........................... no
EGLFS Raspberry Pi ................... no
EGLFS X11 ............................ no
LinuxFB ................................ no
VNC .................................... no
VK_KHR_display ......................... no
QNX:
lgmon ................................ no
IMF .................................. no
XCB:
Using system-provided xcb-xinput ..... no
GL integrations:
GLX Plugin ......................... no
XCB GLX .......................... no
EGL-X11 Plugin ..................... no
Windows:
Direct 2D ............................ no
Direct 2D 1.1 ........................ no
DirectWrite .......................... no
DirectWrite 3 ........................ no
Qt Widgets:
GTK+ ................................... no
Styles ................................. Fusion macOS Windows
Qt Testlib:
Tester for item models ................. yes
Batch tests ............................ no
Qt PrintSupport:
CUPS ................................... yes
Qt Sql Drivers:
DB2 (IBM) .............................. no
InterBase .............................. no
MySql .................................. no
OCI (Oracle) ........................... no
ODBC ................................... no
PostgreSQL ............................. no
SQLite ................................. yes
Using system provided SQLite ......... no
Mimer .................................. no
Further Image Formats:
JasPer ................................. no
MNG .................................... no
TIFF ................................... yes
Using system libtiff ................. no
WEBP ................................... yes
Using system libwebp ................. no
Qt QML:
QML network support .................... yes
QML debugging and profiling support .... yes
QML just-in-time compiler .............. yes
QML XML http request ................... yes
QML Locale ............................. yes
QML SSL support ........................ yes
Qt QML:
QML network support .................... yes
QML debugging and profiling support .... yes
QML just-in-time compiler .............. yes
QML XML http request ................... yes
QML Locale ............................. yes
QML SSL support ........................ yes
Qt QML Models:
QML list model ......................... yes
QML delegate model ..................... yes
Qt Quick:
AnimatedImage item ..................... yes
Canvas item ............................ yes
Support for Qt Quick Designer .......... yes
Flipable item .......................... yes
GridView item .......................... yes
ListView item .......................... yes
TableView item ......................... yes
TreeView item .......................... yes
Path support ........................... yes
PathView item .......................... yes
Positioner items ....................... yes
Repeater item .......................... yes
ShaderEffect item ...................... yes
Sprite item ............................ yes
Qt Quick Templates 2:
Hover support .......................... yes
Multi-touch support .................... yes
Calendar support ....................... yes
Qt Quick Controls 2:
Styles ................................. Basic Fusion Imagine iOS Material Universal macOS
Qt Multimedia:
Spatial Audio .......................... yes
Spatial Audio (Quick3D) ................ no
Low level Audio Backend:
ALSA (experimental) .................. no
PulseAudio ........................... no
MMRenderer ........................... no
CoreAudio ............................ yes
Windows Media SDK .................... no
Open SLES (Android) .................. no
Web Assembly ......................... no
Plugin:
GStreamer 1.0 ........................ no
FFmpeg ............................... no
MMRenderer ........................... no
AVFoundation ......................... yes
Windows Media Foundation ............. no
Hardware acceleration and features:
Video for Linux ...................... no
VAAPI support ........................ no
Linux DMA buffer support ............. no
VideoToolbox ......................... yes
Qt Tools:
Qt Assistant ........................... yes
libclang found ......................... no
Clang-based lupdate parser ............. no
Qt Designer ............................ yes
Qt Distance Field Generator ............ yes
Qt Linguist ............................ yes
pixeltool .............................. yes
qdbus .................................. yes
QDoc ................................... no
Qt Attributions Scanner ................ yes
qtdiag ................................. yes
qtplugininfo ........................... yes
Qt Protobuf:
Qt Core types support .................. no
Qt Gui types support ................... no
Well-known types support ............... no
Qt Protobuf tools:
Qt Protobuf generator .................. no
Qt GRPC:
gRPC support ........................... yes
QML gRPC support ....................... yes
Qt GRPC tools:
Qt GRPC generator ...................... no
Note: Using static linking will disable the use of dynamically loaded plugins. Make sure to import all needed static plugins, or compile needed modules into the library.
WARNING: Feature static_runtime is insignificant in this configuration, ignoring related command line option(s).
WARNING: QDoc will not be compiled, probably because clang's C and C++ libraries could not be located. This means that you cannot build the Qt documentation.
You may need to set CMAKE_PREFIX_PATH or LLVM_INSTALL_DIR to the location of your llvm installation.
Other than clang's libraries, you may need to install another package, such as clang itself, to provide the ClangConfig.cmake file needed to detect your libraries. Once this
file is in place, the configure script may be able to detect your system-installed libraries without further environment variables.
On macOS, you can use Homebrew's llvm package.
You will also need to set the FEATURE_clang CMake variable to ON to re-evaluate this check.
WARNING: Clang-based lupdate parser will not be available. LLVM and Clang C++ libraries have not been found.
You will need to set the FEATURE_clangcpp CMake variable to ON to re-evaluate this check.
--
Qt is now configured for building. Just run 'cmake --build . --parallel'
Once everything is built, you must run 'cmake --install .'
Qt will be installed into '/Users/admin/dev/libs/QT6/release/MacOs'
To configure and build other Qt modules, you can use the following convenience script:
/Users/admin/dev/libs/QT6/release/MacOs/bin/qt-configure-module
If reconfiguration fails for some reason, try removing 'CMakeCache.txt' from the build directory
Alternatively, you can add the --fresh flag to your CMake flags.
-- Configuring done (54.2s)
-- Generating done (4.8s)
CMake Warning:
Manually-specified variables were not used by the project:
INPUT_cxx14
INPUT_cxx17
-- Build files have been written to: /Users/admin/dev/build/qt
Built QT for iOS:
export MY_HOST_PATH=~/dev/libs/QT6/${MY_MODE}/MacOs
export MY_INSTALL_PATH=~/dev/libs/QT6/${MY_MODE}/iOS
${MY_QT_SRC_DIR}/configure -prefix $MY_INSTALL_PATH -qt-host-path $MY_HOST_PATH \
-platform macx-ios-clang -c++std c++20 -opensource -confirm-license \
-static -static-runtime -$MY_MODE -force-debug-info \
-no-openssl -securetransport \
-skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity \
-skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua \
-skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects \
-skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland \
-skip qtwebchannel -skip qtwebengine -skip qtwebview -skip qtquick3dphysics -skip qtspeech -skip qtlocation \
-skip qthttpserver -skip qtgraphs \
&& cmake --build . --parallel \
&& cmake --install .
+ mkdir -p qtbase
+ cd qtbase
+ exec /Users/admin/dev/repos/qt-everywhere-src-6.7.0/qtbase/configure -top-level -prefix /Users/admin/dev/libs/QT6/release/iOS -qt-host-path /Users/admin/dev/libs/QT6/release/MacOs -platform macx-ios-clang -c++std c++20 -opensource -confirm-license -static -static-runtime -release -force-debug-info -no-openssl -securetransport -skip qt3d -skip qt5compat -skip qtactiveqt -skip qtcharts -skip qtcoap -skip qtconnectivity -skip qtdatavis3d -skip qtdoc -skip qtlottie -skip qtmqtt -skip qtnetworkauth -skip qtopcua -skip qtserialport -skip qtpositioning -skip qtquicktimeline -skip qtquick3d -skip qtremoteobjects -skip qtscxml -skip qtsensors -skip qtserialbus -skip qtvirtualkeyboard -skip qtwayland -skip qtwebchannel -skip qtwebengine -skip qtwebview -skip qtquick3dphysics -skip qtspeech -skip qtlocation -skip qthttpserver -skip qtgraphs
'/opt/local/bin/cmake' '-DQT_HOST_PATH=/Users/admin/dev/libs/QT6/release/MacOs' '-DBUILD_qt3d=OFF' '-DBUILD_qt5compat=OFF' '-DBUILD_qtactiveqt=OFF' '-DBUILD_qtcharts=OFF' '-DBUILD_qtcoap=OFF' '-DBUILD_qtconnectivity=OFF' '-DBUILD_qtdatavis3d=OFF' '-DBUILD_qtdoc=OFF' '-DBUILD_qtlottie=OFF' '-DBUILD_qtmqtt=OFF' '-DBUILD_qtnetworkauth=OFF' '-DBUILD_qtopcua=OFF' '-DBUILD_qtserialport=OFF' '-DBUILD_qtpositioning=OFF' '-DBUILD_qtquicktimeline=OFF' '-DBUILD_qtquick3d=OFF' '-DBUILD_qtremoteobjects=OFF' '-DBUILD_qtscxml=OFF' '-DBUILD_qtsensors=OFF' '-DBUILD_qtserialbus=OFF' '-DBUILD_qtvirtualkeyboard=OFF' '-DBUILD_qtwayland=OFF' '-DBUILD_qtwebchannel=OFF' '-DBUILD_qtwebengine=OFF' '-DBUILD_qtwebview=OFF' '-DBUILD_qtquick3dphysics=OFF' '-DBUILD_qtspeech=OFF' '-DBUILD_qtlocation=OFF' '-DBUILD_qthttpserver=OFF' '-DBUILD_qtgraphs=OFF' '-DQT_INTERNAL_CALLED_FROM_CONFIGURE:BOOL=TRUE' '-DBUILD_SHARED_LIBS=OFF' '-DCMAKE_INSTALL_PREFIX=/Users/admin/dev/libs/QT6/release/iOS' '-DQT_QMAKE_TARGET_MKSPEC=macx-ios-clang' '-DCMAKE_C_COMPILER=clang' '-DCMAKE_CXX_COMPILER=clang++' '-DCMAKE_SYSTEM_NAME=iOS' '-DCMAKE_BUILD_TYPE=RelWithDebInfo' '-DINPUT_cxx14=yes' '-DINPUT_cxx17=yes' '-DINPUT_cxx20=yes' '-DINPUT_cxx2b=no' '-DINPUT_static_runtime=yes' '-DINPUT_openssl=no' '-DINPUT_securetransport=yes' '-G' 'Ninja' '/Users/admin/dev/repos/qt-everywhere-src-6.7.0'
-- Using internal CMake iOS toolchain file.
-- simulator_and_device set to: "ON".
-- The CXX compiler identification is AppleClang 15.0.0.15000309
-- The C compiler identification is AppleClang 15.0.0.15000309
-- The ASM compiler identification is AppleClang
-- Found assembler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/clang++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/clang - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Checking dependencies of submodule 'qtbase'
-- Checking dependencies of submodule 'qtimageformats'
-- Checking dependencies of submodule 'qtlanguageserver'
-- Checking dependencies of submodule 'qtshadertools'
-- Checking dependencies of submodule 'qtsvg'
-- Checking dependencies of submodule 'qtdeclarative'
-- Checking dependencies of submodule 'qtmultimedia'
-- Skipping optional dependency 'qtquick3d' of 'qtmultimedia', because building 'qtquick3d' was explicitly disabled.
-- Checking dependencies of submodule 'qtwebsockets'
-- Checking dependencies of submodule 'qttools'
-- Skipping optional dependency 'qtactiveqt' of 'qttools', because building 'qtactiveqt' was explicitly disabled.
-- Checking dependencies of submodule 'qtgrpc'
-- Checking dependencies of submodule 'qtquickeffectmaker'
-- Skipping optional dependency 'qtquick3d' of 'qtquickeffectmaker', because building 'qtquick3d' was explicitly disabled.
-- Checking dependencies of submodule 'qttranslations'
-- Configuring submodule 'qtbase'
-- [QtBase] CMAKE_BUILD_TYPE was already explicitly set to: 'RelWithDebInfo'
-DCMAKE_C_FLAGS_DEBUG=-g
-DCMAKE_C_FLAGS_RELEASE=-O3 -DNDEBUG
-DCMAKE_C_FLAGS_RELWITHDEBINFO=-O2 -g -DNDEBUG
-DCMAKE_CXX_FLAGS_DEBUG=-g
-DCMAKE_CXX_FLAGS_RELEASE=-O3 -DNDEBUG
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO=-O2 -g -DNDEBUG
-DCMAKE_C_STANDARD=11
-DCMAKE_C_STANDARD_REQUIRED=ON
-DCMAKE_CXX_STANDARD=17
-DCMAKE_CXX_STANDARD_REQUIRED=ON
-DCMAKE_MODULE_PATH:STRING=/Users/admin/dev/repos/qt-everywhere-src-6.7.0/qtbase/cmake/platforms
-DCMAKE_OSX_ARCHITECTURES:STRING=arm64
-DCMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH:BOOL=OFF
-- Configuring submodule 'qtimageformats'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Configuring submodule 'qtlanguageserver'
-- Configuring submodule 'qtshadertools'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Configuring submodule 'qtsvg'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Configuring submodule 'qtdeclarative'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
CMake Warning at qtbase/cmake/QtFindPackageHelpers.cmake:477 (message):
Could not find target Qt6::QuickControls2IOSStyleImpl to query its package
name. Defaulting to package name Qt6QuickControls2IOSStyleImpl. Consider
re-arranging the project structure to ensure the target exists by this
point.
Call Stack (most recent call first):
qtbase/cmake/QtFindPackageHelpers.cmake:520 (qt_internal_get_package_name_of_target)
qtbase/cmake/QtTargetHelpers.cmake:226 (qt_register_target_dependencies)
qtbase/cmake/QtPluginHelpers.cmake:343 (qt_internal_extend_target)
qtdeclarative/src/qml/Qt6QmlBuildInternals.cmake:217 (qt_internal_add_plugin)
qtdeclarative/src/quickcontrols/ios/CMakeLists.txt:60 (qt_internal_add_qml_module)
-- Configuring submodule 'qtquicktimeline'
-- Configuring submodule 'qtquick3d'
-- Configuring submodule 'qtmultimedia'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Configuring submodule 'qt3d'
-- Configuring submodule 'qt5compat'
-- Configuring submodule 'qtactiveqt'
-- Configuring submodule 'qtcharts'
-- Configuring submodule 'qtcoap'
-- Configuring submodule 'qtconnectivity'
-- Configuring submodule 'qtdatavis3d'
-- Configuring submodule 'qtgraphs'
-- Configuring submodule 'qtwebsockets'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
CMake Warning (dev) at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:423 (message):
INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
Please port your module to use declarative type registration.
Call Stack (most recent call first):
qtwebsockets/src/imports/qmlwebsockets/CMakeLists.txt:4 (qt_internal_add_qml_module)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Configuring submodule 'qthttpserver'
-- Configuring submodule 'qtserialport'
-- Configuring submodule 'qtpositioning'
-- Configuring submodule 'qtlocation'
-- Configuring submodule 'qttools'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find Clang (missing: Clang_DIR)
-- Could NOT find Clang (missing: Clang_DIR)
-- Configuring submodule 'qtwebchannel'
-- Configuring submodule 'qtwebengine'
-- Configuring submodule 'qtdoc'
-- Configuring submodule 'qtgrpc'
-- Could NOT find Qt6ProtobufTools (missing: Qt6ProtobufTools_DIR)
-- Could NOT find Qt6GrpcTools (missing: Qt6GrpcTools_DIR)
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Configuring submodule 'qtlottie'
-- Configuring submodule 'qtmqtt'
-- Configuring submodule 'qtnetworkauth'
-- Configuring submodule 'qtopcua'
-- Configuring submodule 'qtquick3dphysics'
-- Configuring submodule 'qtquickeffectmaker'
-- Could NOT find EGL (missing: EGL_INCLUDE_DIR HAVE_EGL EGL_LIBRARY)
-- Could NOT find Qt6Quick3DGlslParserPrivate (missing: Qt6Quick3DGlslParserPrivate_DIR)
CMake Warning at /Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6/Qt6Config.cmake:224 (message):
Failed to find optional Qt component "Quick3DGlslParserPrivate".
Expected Config file at
"/Users/admin/dev/build/qt/qtbase/lib/cmake/Qt6Quick3DGlslParserPrivate/Qt6Quick3DGlslParserPrivateConfig.cmake"
does NOT exist
Call Stack (most recent call first):
qtquickeffectmaker/CMakeLists.txt:20 (find_package)
Skipping the build as the condition "NOT CMAKE_CROSSCOMPILING" is not met.
-- Configuring submodule 'qtremoteobjects'
-- Configuring submodule 'qtscxml'
-- Configuring submodule 'qtsensors'
-- Configuring submodule 'qtserialbus'
-- Configuring submodule 'qtspeech'
-- Configuring submodule 'qttranslations'
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/repos/qt-everywhere-src-6.7.0/qttranslations/translations/qt_sv.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/assistant_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/designer_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/linguist_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qt_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qt_help_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtbase_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtconnectivity_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtdeclarative_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtlocation_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtmultimedia_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtserialport_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtwebengine_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
CMake Warning at /Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:399 (message):
Failed to resolve language code for
/Users/admin/dev/build/qt/qttranslations/translations/en_ts/qtwebsockets_en.ts.
Please update CFBundleLocalizations in your Info.plist manually.
Call Stack (most recent call first):
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:510 (_qt_internal_store_languages_from_ts_files_in_targets)
/Users/admin/dev/libs/QT6/release/MacOs/lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake:788 (qt6_add_lrelease)
qttranslations/translations/CMakeLists.txt:191 (qt_add_lrelease)
-- Configuring submodule 'qtvirtualkeyboard'
-- Configuring submodule 'qtwayland'
-- Configuring submodule 'qtwebview'
-- Configuration summary shown below. It has also been written to /Users/admin/dev/build/qt/config.summary
-- Configure with --log-level=STATUS or higher to increase CMake's message verbosity. The log level does not persist across reconfigurations.
-- Configure summary:
Building for: macx-ios-clang (arm64;x86_64), arm64 features: neon crypto)
Compiler: clang (Apple) 15.0.0.15000309
Build options:
Mode ................................... release (with debug info)
Optimize release build for size ........ no
Fully optimize release builds (-O3) .... no
Building shared libraries .............. no
Using ccache ........................... no
Unity Build ............................ no
Relocatable ............................ no
Using precompiled headers .............. yes
Using Link Time Optimization (LTCG) .... no
Using Intel CET ........................ no
Target compiler supports:
ARM Extensions ....................... NEON AES
Sanitizers:
Addresses ............................ no
Threads .............................. no
Memory ............................... no
Fuzzer (instrumentation only) ........ no
Undefined ............................ no
Build parts ............................ libs
Install examples sources ............... no
App store compliance ................... yes
Qt modules and options:
Qt Concurrent .......................... yes
Qt D-Bus ............................... no
Qt D-Bus directly linked to libdbus .... no
Qt Gui ................................. yes
Qt Network ............................. yes
Qt PrintSupport ........................ yes
Qt Sql ................................. yes
Qt Testlib ............................. yes
Qt Widgets ............................. yes
Qt Xml ................................. yes
Support enabled for:
Using pkg-config ....................... no
Using vcpkg ............................ no
udev ................................... no
OpenSSL ................................ no
Qt directly linked to OpenSSL ........ no
OpenSSL 1.1 ............................ no
OpenSSL 3.0 ............................ no
Using system zlib ...................... yes
Zstandard support ...................... no
Thread support ......................... yes
Common build options:
Linker can resolve circular dependencies yes
Qt Core:
backtrace .............................. yes
DoubleConversion ....................... yes
Using system DoubleConversion ........ no
GLib ................................... no
ICU .................................... no
Using system libb2 ..................... no
Built-in copy of the MIME database ..... yes
Application permissions ................ yes
Defaulting legacy IPC to POSIX ......... yes
Tracing backend ........................ <none>
OpenSSL based cryptographic hash ....... no
Logging backends:
journald ............................. no
syslog ............................... no
slog2 ................................ no
PCRE2 .................................. yes
Using system PCRE2 ................... no
Qt Sql:
SQL item models ........................ yes
Qt Network:
getifaddrs() ........................... yes
IPv6 ifname ............................ yes
libproxy ............................... no
SecureTransport ........................ yes
DTLS ................................... no
OCSP-stapling .......................... no
SCTP ................................... no
Use system proxies ..................... yes
GSSAPI ................................. no
Brotli Decompression Support ........... no
qIsEffectiveTLD() ...................... yes
Built-in publicsuffix database ....... yes
System publicsuffix database ......... no
Core tools:
Android deployment tool ................ no
macOS deployment tool .................. no
Windows deployment tool ................ no
qmake .................................. yes
Qt Gui:
Accessibility .......................... yes
FreeType ............................... yes
Using system FreeType ................ no
HarfBuzz ............................... yes
Using system HarfBuzz ................ no
Fontconfig ............................. no
Image formats:
GIF .................................. yes
ICO .................................. yes
JPEG ................................. yes
Using system libjpeg ............... no
PNG .................................. yes
Using system libpng ................ no
Text formats:
HtmlParser ........................... yes
CssParser ............................ yes
OdfWriter ............................ yes
MarkdownReader ....................... yes
Using system libmd4c ............... no
MarkdownWriter ....................... yes
EGL .................................... no
OpenVG ................................. no
OpenGL:
Desktop OpenGL ....................... no
OpenGL ES 2.0 ........................ yes
OpenGL ES 3.0 ........................ yes
OpenGL ES 3.1 ........................ no
OpenGL ES 3.2 ........................ no
Vulkan ................................. no
Session Management ..................... yes
Features used by QPA backends:
evdev .................................. no
libinput ............................... no
HiRes wheel support in libinput ........ no
INTEGRITY HID .......................... no
mtdev .................................. no
tslib .................................. no
xkbcommon .............................. no
X11 specific:
XLib ................................. no
XCB Xlib ............................. no
EGL on X11 ........................... no
xkbcommon-x11 ........................ no
xcb-sm ............................... no
QPA backends:
DirectFB ............................... no
EGLFS .................................. no
EGLFS details:
EGLFS OpenWFD ........................ no
EGLFS i.Mx6 .......................... no
EGLFS i.Mx6 Wayland .................. no
EGLFS RCAR ........................... no
EGLFS EGLDevice ...................... no
EGLFS GBM ............................ no
EGLFS VSP2 ........................... no
EGLFS Mali ........................... no
EGLFS Raspberry Pi ................... no
EGLFS X11 ............................ no
LinuxFB ................................ no
VNC .................................... no
VK_KHR_display ......................... no
QNX:
lgmon ................................ no
IMF .................................. no
XCB:
Using system-provided xcb-xinput ..... no
GL integrations:
GLX Plugin ......................... no
XCB GLX .......................... no
EGL-X11 Plugin ..................... no
Windows:
Direct 2D ............................ no
Direct 2D 1.1 ........................ no
DirectWrite .......................... no
DirectWrite 3 ........................ no
Qt Widgets:
GTK+ ................................... no
Styles ................................. Fusion Windows
Qt Testlib:
Tester for item models ................. yes
Batch tests ............................ no
Qt PrintSupport:
CUPS ................................... no
Qt Sql Drivers:
DB2 (IBM) .............................. no
InterBase .............................. no
MySql .................................. no
OCI (Oracle) ........................... no
ODBC ................................... no
PostgreSQL ............................. no
SQLite ................................. yes
Using system provided SQLite ......... no
Mimer .................................. no
Further Image Formats:
JasPer ................................. no
MNG .................................... no
TIFF ................................... yes
Using system libtiff ................. no
WEBP ................................... yes
Using system libwebp ................. no
Qt QML:
QML network support .................... yes
QML debugging and profiling support .... yes
QML just-in-time compiler .............. no
QML XML http request ................... yes
QML Locale ............................. yes
QML SSL support ........................ yes
Qt QML:
QML network support .................... yes
QML debugging and profiling support .... yes
QML just-in-time compiler .............. no
QML XML http request ................... yes
QML Locale ............................. yes
QML SSL support ........................ yes
Qt QML Models:
QML list model ......................... yes
QML delegate model ..................... yes
Qt Quick:
AnimatedImage item ..................... yes
Canvas item ............................ yes
Support for Qt Quick Designer .......... yes
Flipable item .......................... yes
GridView item .......................... yes
ListView item .......................... yes
TableView item ......................... yes
TreeView item .......................... yes
Path support ........................... yes
PathView item .......................... yes
Positioner items ....................... yes
Repeater item .......................... yes
ShaderEffect item ...................... yes
Sprite item ............................ yes
Qt Quick Templates 2:
Hover support .......................... yes
Multi-touch support .................... yes
Calendar support ....................... yes
Qt Quick Controls 2:
Styles ................................. Basic Fusion Imagine iOS Material Universal
Qt Multimedia:
Spatial Audio .......................... yes
Spatial Audio (Quick3D) ................ no
Low level Audio Backend:
ALSA (experimental) .................. no
PulseAudio ........................... no
MMRenderer ........................... no
CoreAudio ............................ yes
Windows Media SDK .................... no
Open SLES (Android) .................. no
Web Assembly ......................... no
Plugin:
GStreamer 1.0 ........................ no
FFmpeg ............................... no
MMRenderer ........................... no
AVFoundation ......................... yes
Windows Media Foundation ............. no
Hardware acceleration and features:
Video for Linux ...................... no
VAAPI support ........................ no
Linux DMA buffer support ............. no
VideoToolbox ......................... yes
Qt Tools:
Qt Assistant ........................... yes
libclang found ......................... no
Clang-based lupdate parser ............. no
Qt Designer ............................ yes
Qt Distance Field Generator ............ yes
Qt Linguist ............................ yes
pixeltool .............................. yes
qdbus .................................. no
QDoc ................................... no
Qt Attributions Scanner ................ yes
qtdiag ................................. no
qtplugininfo ........................... yes
Qt Protobuf:
Qt Core types support .................. no
Qt Gui types support ................... no
Well-known types support ............... no
Qt Protobuf tools:
Qt Protobuf generator .................. no
Qt GRPC:
gRPC support ........................... yes
QML gRPC support ....................... yes
Qt GRPC tools:
Qt GRPC generator ...................... no
Note: Using static linking will disable the use of dynamically loaded plugins. Make sure to import all needed static plugins, or compile needed modules into the library.
WARNING: Feature static_runtime is insignificant in this configuration, ignoring related command line option(s).
WARNING: QDoc will not be compiled, probably because clang's C and C++ libraries could not be located. This means that you cannot build the Qt documentation.
You may need to set CMAKE_PREFIX_PATH or LLVM_INSTALL_DIR to the location of your llvm installation.
Other than clang's libraries, you may need to install another package, such as clang itself, to provide the ClangConfig.cmake file needed to detect your libraries. Once this
file is in place, the configure script may be able to detect your system-installed libraries without further environment variables.
On macOS, you can use Homebrew's llvm package.
You will also need to set the FEATURE_clang CMake variable to ON to re-evaluate this check.
WARNING: Clang-based lupdate parser will not be available. LLVM and Clang C++ libraries have not been found.
You will need to set the FEATURE_clangcpp CMake variable to ON to re-evaluate this check.
--
Qt is now configured for building. Just run 'cmake --build . --parallel'
Once everything is built, you must run 'cmake --install .'
Qt will be installed into '/Users/admin/dev/libs/QT6/release/iOS'
To configure and build other Qt modules, you can use the following convenience script:
/Users/admin/dev/libs/QT6/release/iOS/bin/qt-configure-module
If reconfiguration fails for some reason, try removing 'CMakeCache.txt' from the build directory
Alternatively, you can add the --fresh flag to your CMake flags.
-- Configuring done (66.0s)
-- Generating done (7.3s)
CMake Warning:
Manually-specified variables were not used by the project:
INPUT_cxx14
INPUT_cxx17
-- Build files have been written to: /Users/admin/dev/build/qt
“To submit the application, you can use Xcode, or the Application Loader (installed with Xcode). Qt Creator does not provide an interface for managing all of the settings in an Xcode project configuration.”
So, you can’t do everything from QtCreator…
https://forum.qt.io/topic/102704/create-ios-package-for-publishing-in-app-store-how/5
Building Applications from the Command Line
https://doc.qt.io/qt-6/ios.html#building-applications-from-the-command-line
xcodebuild build -allowProvisioningUpdates -project .xcodeproj -scheme -configuration Debug -destination "generic/platform=iOS" -destination-timeout 1 ENABLE_ONLY_ACTIVE_RESOURCES=NO
CMake and Code Signing in XCode 8 for iOS projects
https://stackoverflow.com/a/45860228/2394762
SET_XCODE_PROPERTY(MyTarget CODE_SIGN_IDENTITY “iPhone Developer”)
SET_XCODE_PROPERTY(MyTarget DEVELOPMENT_TEAM ${DEVELOPMENT_TEAM_ID})
https://github.com/sheldonth/ios-cmake/blob/master/CMakeLists.txt:
# Create the app target
set_target_properties(${APP_NAME} PROPERTIES
XCODE_ATTRIBUTE_DEBUG_INFORMATION_FORMAT "dwarf-with-dsym"
XCODE_ATTRIBUTE_GCC_PREFIX_HEADER "${CMAKE_CURRENT_SOURCE_DIR}/Prefix.pch"
RESOURCE "${RESOURCES}"
XCODE_ATTRIBUTE_GCC_PRECOMPILE_PREFIX_HEADER "YES"
XCODE_ATTRIBUTE_IPHONEOS_DEPLOYMENT_TARGET ${DEPLOYMENT_TARGET}
XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY ${CODE_SIGN_IDENTITY}
XCODE_ATTRIBUTE_DEVELOPMENT_TEAM ${DEVELOPMENT_TEAM_ID}
XCODE_ATTRIBUTE_TARGETED_DEVICE_FAMILY ${DEVICE_FAMILY}
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/plist.in
XCODE_ATTRIBUTE_CLANG_ENABLE_OBJC_ARC YES
XCODE_ATTRIBUTE_COMBINE_HIDPI_IMAGES NO
XCODE_ATTRIBUTE_INSTALL_PATH "$(LOCAL_APPS_DIR)"
XCODE_ATTRIBUTE_ENABLE_TESTABILITY YES
XCODE_ATTRIBUTE_GCC_SYMBOLS_PRIVATE_EXTERN YES
)
Create a development provisioning profile
https://developer.apple.com/help/account/manage-profiles/create-a-development-provisioning-profile/
…
Select the App ID you want to use for development, then click Continue.
…
Xcode Command /usr/bin/codesign failed with exit code 1 : errSecInternalComponent
https://stackoverflow.com/questions/24023639/xcode-command-usr-bin-codesign-failed-with-exit-code-1-errsecinternalcomponen
Open Keychain Access, then in the File menu select Lock All Keychains.
https://doc.qt.io/qt-6/qtlocation-mapviewer-example.html
./qtlocation/examples/location/mapviewer/mapviewer.pro
Android 8.0 (API 26) to 14 (API 34)
https://doc.qt.io/qt-6/mobiledevelopment.html