From ca2adc0ecbdf4694dcf062fcc14ea67510919963 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 27 Jul 2019 15:03:30 +0200 Subject: Mac: Set test app bundles as high resolution capable This fixes the nasty title bar scaling. --- wscript | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'wscript') 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 -- cgit v1.2.1