Skip to content

Commit 3765c48

Browse files
committed
qt: fix bitcoin-qt app categorization on apple silicon
On master, the deployed bitcoin-qt application is categorized as an IOS application. This is obviously incorrect, and the built executable is not an IOS executable. To fix this, we set the CFBundleSupportedPlatforms key in our info.plist
1 parent f4e12fd commit 3765c48

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

share/qt/Info.plist.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
<key>CFBundlePackageType</key>
1717
<string>APPL</string>
1818

19+
<key>CFBundleSupportedPlatforms</key>
20+
<array>
21+
<string>MacOSX</string>
22+
</array>
23+
1924
<key>NSHumanReadableCopyright</key>
2025
<string>@CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_BUILD@, Copyright © 2009-@COPYRIGHT_YEAR@ @COPYRIGHT_HOLDERS_FINAL@</string>
2126

0 commit comments

Comments
 (0)