mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-19 18:02:54 +01:00
3154362f1a
* Add platform specific name to bitcion-s artificats so they don't overwrite each other on releases * Fix so artifact name is changed, but startup script name is not changed
14 lines
313 B
Scala
14 lines
313 B
Scala
name := s"bitcoin-s-cli"
|
|
|
|
Universal / packageName := CommonSettings.buildPackageName((Universal /packageName).value)
|
|
|
|
libraryDependencies ++= Deps.cli.value
|
|
|
|
nativeImageOptions ++= Seq(
|
|
"-H:+ReportExceptionStackTraces",
|
|
"--initialize-at-build-time",
|
|
"--no-fallback",
|
|
"--enable-http",
|
|
"--enable-https"
|
|
)
|