We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 112b77a commit d65bdf9Copy full SHA for d65bdf9
1 file changed
packaging/macos.spec
@@ -44,12 +44,13 @@ exe = EXE(
44
),
45
)
46
47
-coll = COLLECT(
+app = BUNDLE(
48
exe,
49
- a.binaries,
50
- a.datas,
51
- strip=False,
52
- upx=True,
53
- upx_exclude=[],
54
- name='CodeShuffler',
+ name='CodeShuffler.app',
+ icon=os.path.join(
+ repo_root,
+ 'codeshuffler/gui/icons/codeshuffler-icon.icns',
+ ),
+ bundle_identifier="com.codeshuffler.app",
55
56
+
0 commit comments