Reason: It is unused. See https://leanprover.zulipchat.com/#narrow/stream/270676-lean4/topic/.5BRFC.5D.20name.2Fversion.20package.20fields/near/254114011 for more discussion of topic.
14 lines
251 B
Text
14 lines
251 B
Text
import Lake.Package
|
|
import Lake.BuildTargets
|
|
|
|
open Lake System
|
|
|
|
def package : PackageConfig := {
|
|
name := "ffi-dep"
|
|
binRoot := `Main
|
|
binName := "add"
|
|
dependencies := [{
|
|
name := "ffi"
|
|
src := Source.path (FilePath.mk ".." / "ffi")
|
|
}]
|
|
}
|