lakefile.lean 473 B

123456789101112131415161718
  1. import Lake
  2. open Lake DSL
  3. package «wygryw» where
  4. -- Settings applied to both builds and interactive editing
  5. leanOptions := #[
  6. ⟨`pp.unicode.fun, true⟩, -- pretty-prints `fun a ↦ b`
  7. ⟨`pp.proofs.withType, false⟩
  8. ]
  9. -- add any additional package configuration options here
  10. require mathlib from git
  11. "https://github.com/leanprover-community/mathlib4.git"
  12. @[default_target]
  13. lean_lib «Wygryw» where
  14. -- add any library configuration options here