Lines Matching refs:app
12 # app path to binary to package, e.g. out/Debug/gen/dm
14 # the app name will be appended to this to create the full bundle ID
15 app,bundle_prefix = sys.argv[1:3]
17 out, app = os.path.split(app)
20 with open(os.path.join(out, app + '_Info.plist'), 'w') as f:
26 <key>CFBundleExecutable</key> <string>{app}</string>
27 <key>CFBundleIdentifier</key> <string>{bundle_prefix}.{app}</string>
37 '''.format(app=app, bundle_prefix=bundle_prefix))