data: Add qt framework path to macOS native file

This can be required when pkgconfig is used to pick up Qt, which is
not true for gstreamer, but may be true for other subprojects.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5124>
This commit is contained in:
Nirbheek Chauhan 2023-07-31 14:00:58 +05:30 committed by GStreamer Marge Bot
parent 8c3edd231e
commit fcd2d8531f

View file

@ -1,8 +1,8 @@
[constants]
macosx_sdk = '/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk'
macosx_minver = '10.13'
common_args = ['--sysroot=' + macosx_sdk, '-mmacosx-version-min=' + macosx_minver, '-F' + macosx_sdk / 'System/Library/Frameworks']
qt_prefix = HOME_DIR / 'Qt/5.15.2/clang_64'
common_args = ['--sysroot=' + macosx_sdk, '-mmacosx-version-min=' + macosx_minver, '-F' + macosx_sdk / 'System/Library/Frameworks', '-F' + qt_prefix / 'lib']
# Uncomment for x86 macs:
#homebrew_prefix = '/usr/local'
# Uncomment for arm64 macs:
@ -28,7 +28,7 @@ libnice = 'enabled'
tls = 'enabled'
introspection = 'disabled'
python = 'disabled'
qt5 = 'disabled'
qt5 = 'enabled'
[gst-plugins-base:project options]
gl = 'enabled'