mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
24 lines
830 B
Python
24 lines
830 B
Python
### auto-generated section `build fleet.util.datetime` start
|
|
load("//build:compiler-options.bzl", "create_kotlinc_options")
|
|
load("@rules_jvm//:jvm.bzl", "jvm_library")
|
|
|
|
create_kotlinc_options(
|
|
name = "custom_datetime",
|
|
opt_in = ["kotlin.concurrent.atomics.ExperimentalAtomicApi"],
|
|
x_consistent_data_class_copy_visibility = True,
|
|
x_context_parameters = True,
|
|
x_lambdas = "class"
|
|
)
|
|
|
|
jvm_library(
|
|
name = "datetime",
|
|
module_name = "fleet.util.datetime",
|
|
visibility = ["//visibility:public"],
|
|
srcs = glob(["srcCommonMain/**/*.kt", "srcCommonMain/**/*.java", "srcCommonMain/**/*.form"], allow_empty = True, exclude = ["**/module-info.java"]),
|
|
kotlinc_opts = ":custom_datetime",
|
|
deps = [
|
|
"@lib//:kotlin-stdlib",
|
|
"@lib//:kotlinx-datetime-jvm",
|
|
]
|
|
)
|
|
### auto-generated section `build fleet.util.datetime` end |