forked from fpvandoorn/LeanCourse24
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlakefile.lean
More file actions
24 lines (20 loc) · 802 Bytes
/
lakefile.lean
File metadata and controls
24 lines (20 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import Lake
open Lake DSL
package «LeanCourse» where
-- Settings applied to both builds and interactive editing
leanOptions := #[
⟨`pp.unicode.fun, true⟩, -- pretty-prints `fun a ↦ b`
⟨`autoImplicit, false⟩,
⟨`relaxedAutoImplicit, false⟩,
⟨`linter.unusedVariables, false⟩
]
-- add any additional package configuration options here
require mathlib from git
"https://github.com/leanprover-community/mathlib4" @ "5e050d47562fa4938a5f9afbc006c7f02f4544aa"
-- This is run only if we're in `dev` mode. This is so not everyone has to build doc-gen
meta if get_config? env = some "dev" then
require «doc-gen4» from git
"https://github.com/leanprover/doc-gen4"
@[default_target]
lean_lib «LeanCourse» where
-- add any library configuration options here