36 lines
788 B
Text
36 lines
788 B
Text
load(
|
|
"@io_tweag_rules_haskell//haskell:haskell.bzl",
|
|
"haskell_library",
|
|
"haskell_toolchain_library",
|
|
)
|
|
|
|
haskell_library(
|
|
name = "library-with-cbits",
|
|
srcs = ["AddOne.hsc"],
|
|
linkstatic = False,
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//tests/data:ourclibrary",
|
|
"//tests/hackage:base",
|
|
],
|
|
)
|
|
|
|
haskell_library(
|
|
name = "library-with-cbits-indirect",
|
|
srcs = ["AddOne2.hs"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":library-with-cbits",
|
|
"//tests/hackage:base",
|
|
],
|
|
)
|
|
|
|
haskell_library(
|
|
name = "library-with-cbits-static",
|
|
srcs = ["AddOne.hsc"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//tests/data:ourclibrary-static",
|
|
"//tests/hackage:base",
|
|
],
|
|
)
|