summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/build
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2019-09-15 20:00:59 -0400
committer arbee <rb6502@users.noreply.github.com>2019-09-15 20:00:59 -0400
commit2292cf332c989bf374377b61719beead0706b989 (patch)
tree8ba3c9f5af0b9e6f487a7b3fe8fccf6c3c99154a /scripts/build
parentfd505eb0d643a8a8a50ba32f7f0704fec400138d (diff)
Preliminary Mac native OSD. Not working yet. [R. Belmont]
This will compile, link, and run a driver all the way to the first info screen, provided you use -video bgfx. However, although there's a valid NSWindow created, it never actually appears on screen for unknown (but likely silly) reasons. Inputs are not implemented and fullscreen exists but is untried.
Diffstat (limited to 'scripts/build')
-rw-r--r--scripts/build/verinfo.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/build/verinfo.py b/scripts/build/verinfo.py
index 51bf4f25d63..f89956d1a53 100644
--- a/scripts/build/verinfo.py
+++ b/scripts/build/verinfo.py
@@ -165,6 +165,8 @@ elif outfmt == 'plist':
fp.write('\t<string>%s</string>\n' % product_name)
fp.write('\t<key>CFBundleShortVersionString</key>\n')
fp.write('\t<string>%s.%s.%s</string>\n' % (version_major, version_minor, version_build))
+ fp.write('\t<key>NSPrincipalClass</key>\n')
+ fp.write('\t<string>NSApplication</string>\n')
fp.write('</dict>\n')
fp.write('</plist>\n')
fp.flush()