forked from teorth/pfr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lakefile.lean
42 lines (35 loc) · 1.41 KB
/
lakefile.lean
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import Lake
open Lake DSL
def moreServerArgs := #[
"-DrelaxedAutoImplicit=false", -- prevents typos to be interpreted as new free variables
"-Dpp.unicode.fun=true", -- pretty-prints `fun a ↦ b`
"-Dpp.proofs.withType=false"
]
-- These settings only apply during `lake build`, but not in VSCode editor.
def moreLeanArgs := moreServerArgs
-- These are additional settings which do not affect the lake hash,
-- so they can be enabled in CI and disabled locally or vice versa.
-- Warning: Do not put any options here that actually change the olean files,
-- or inconsistent behavior may result
def weakLeanArgs : Array String :=
if get_config? CI |>.isSome then
#["-DwarningAsError=true"]
else
#[]
package PFR where
leanOptions := #[
⟨`relaxedAutoImplicit, false⟩, -- prevents typos to be interpreted as new free variables
⟨`pp.unicode.fun, true⟩, -- pretty-prints `fun a ↦ b`
⟨`pp.proofs.withType, false⟩]
-- add any package configuration options here
require LeanAPAP from git
"https://github.com/YaelDillies/LeanAPAP.git"
-- 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" @ "main"
@[default_target]
lean_lib PFR where
moreLeanArgs := moreLeanArgs
weakLeanArgs := weakLeanArgs
-- add any library configuration options here