How to Include macOS Library Bundle with QMake?
Unsolved
Installation and Deployment
-
I am building a Qt 6.2.2 Desktop application which leverages an external library. This library's SDK is leverages a framework provided by other installed software from vendor in a .bundle formate located in the /Library/Application Support/ structure as a single apifile in .bundle format. Like VendorAPI.bundle
While developing the application runs fine in debug and release but when creating a deployment package (macdeployqt) it's not included and crashes on launch.
I have a header and CPP and the CPP file makes reference to the framework directly.
Is there a way to tell qmake to include this?
-
Hi,
LIBS += -F/path/to/framework -fframework_name