aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-07-27 15:03:30 +0200
committerDavid Robillard <d@drobilla.net>2019-07-28 19:06:39 +0200
commitca2adc0ecbdf4694dcf062fcc14ea67510919963 (patch)
treefd2e4f5fd04e896581d5618a98e274f7d8b35631 /wscript
parente1c3b14e51a9e0a390d3ce6dcba80e7ee0a9c02f (diff)
downloadpugl-ca2adc0ecbdf4694dcf062fcc14ea67510919963.tar.gz
pugl-ca2adc0ecbdf4694dcf062fcc14ea67510919963.tar.bz2
pugl-ca2adc0ecbdf4694dcf062fcc14ea67510919963.zip
Mac: Set test app bundles as high resolution capable
This fixes the nasty title bar scaling.
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 6 insertions, 0 deletions
diff --git a/wscript b/wscript
index d0697c2..2886958 100644
--- a/wscript
+++ b/wscript
@@ -159,6 +159,12 @@ def build(bld):
for prog in progs:
if bld.env.TARGET_PLATFORM == 'darwin':
target = '{0}.app/Contents/MacOS/{0}'.format(prog)
+
+ bld(features = 'subst',
+ source = 'resources/Info.plist.in',
+ target = '{}.app/Contents/Info.plist'.format(prog),
+ install_path = '',
+ NAME = prog)
else:
target = prog