lean4-htt/examples/hello/Package.lean
2021-05-29 08:54:48 -04:00

20 lines
333 B
Text

import Leanpkg2.Build
import Leanpkg2.Configure
import Leanpkg2.Manifest
open Leanpkg2
def manifest : Manifest := {
name := "hello",
version := "1.0",
path := "src"
}
def configure : IO Unit :=
discard <| Leanpkg2.configure manifest
def build : IO Unit :=
Leanpkg2.build manifest ["bin"]
def main : IO Unit :=
build