diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2020-10-18 19:22:10 +0200 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2020-10-18 19:22:10 +0200 |
commit | 1a1338c37929d11a3d6c3ca2843cff23693e6a4f (patch) | |
tree | e0f209d0ffec9fb4ff2dd4ce98d68c6ecd7dc503 | |
parent | a05d061aa384863e601c7989b363f8ef70dad34f (diff) | |
download | rockbox-1a1338c.tar.gz rockbox-1a1338c.zip |
rbutil: Fix ipodpatcher qmake based build on macOS.
On macOS we need to pass the used frameworks, otherwise linking will
fail.
Change-Id: I6b19eac6a460d91b567c0eb128b776558c0a4a39
-rw-r--r-- | rbutil/ipodpatcher/ipodpatcher.pro | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rbutil/ipodpatcher/ipodpatcher.pro b/rbutil/ipodpatcher/ipodpatcher.pro index 65dd1016e4..fac1e35f00 100644 --- a/rbutil/ipodpatcher/ipodpatcher.pro +++ b/rbutil/ipodpatcher/ipodpatcher.pro @@ -36,6 +36,10 @@ DEFINES += RELEASE=1 _LARGEFILE64_SOURCE RC_FILE = ipodpatcher.rc +macx { + LIBS += -framework CoreFoundation -framework IOKit +} + unix { target.path = /usr/local/bin |