Skip to content

Commit 2e6f934

Browse files
committed
Add custom launcher file property
1 parent 5b62f17 commit 2e6f934

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main/java/io/github/fvarrui/javapackager/model/MacConfig.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public class MacConfig implements Serializable {
3434
private String developerId = "-";
3535
private File entitlements;
3636
private File provisionProfile;
37+
private File customLauncher;
3738
private boolean codesignApp = true;
3839
private InfoPlist infoPlist = new InfoPlist();
3940
private boolean hardenedCodesign = true;
@@ -191,6 +192,14 @@ public void setDeveloperId(String developerId) {
191192
this.developerId = developerId;
192193
}
193194

195+
public File getCustomLauncher() {
196+
return customLauncher;
197+
}
198+
199+
public void setCustomLauncher(File customLauncher) {
200+
this.customLauncher = customLauncher;
201+
}
202+
194203
public File getProvisionProfile() {
195204
return provisionProfile;
196205
}

0 commit comments

Comments
 (0)