我正在使用JavaFX Gradle 插件来构建我的 JavaFX 应用程序。是否可以在完成的安装程序中添加多个开始菜单项?
问问题
250 次
1 回答
10
在回答了您关于其他本机启动器的其他问题后,我检查了 JDK 的来源,看看需要什么。
任何启用了“needMenu”属性的启动器都将反映在开始菜单内的一些菜单条目中。只需将这样的内容添加到您的构建文件中:
jfx {
// ... normal configuration ...
// your secondary entry points, each will inherit the configuration, unless you specify otherwise here
secondaryLaunchers = [
[
appName: 'somethingDifferent2',
mainClass: 'your.different.entrypoint.MainApp',
// the following is required for an start-menu entry
needMenu: true
]
]
}
免责声明:我是那个 JavaFX-Gradle-plugin 的创建者
于 2017-09-30T06:31:30.873 回答