packager.mac.MacOSInfoPlist.scala Maven / Gradle / Ivy
The newest version!
package packager.mac
case class MacOSInfoPlist(executableName: String, identifier: String) {
def generateContent: String = {
val content =
s"""
|
|
|
| CFBundleExecutable
| $executableName
| CFBundleIdentifier
| $identifier
|
| """.stripMargin
content
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy