File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
src/main/java/io/github/fvarrui/javapackager/model Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments