-
Notifications
You must be signed in to change notification settings - Fork 11
/
lakefile.lean
47 lines (36 loc) · 983 Bytes
/
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
43
44
45
46
47
import Lake
open Lake DSL
package «lean-training-data» {
-- add any package configuration options here
}
require mathlib from git
"https://github.com/leanprover-community/mathlib4.git" @ "master"
@[default_target]
lean_lib TrainingData where
@[default_target]
lean_lib Examples where
@[default_target]
lean_exe tactic_benchmark where
root := `scripts.tactic_benchmark
supportInterpreter := true
@[default_target]
lean_exe export_infotree where
root := `scripts.export_infotree
supportInterpreter := true
@[default_target]
lean_exe training_data where
root := `scripts.training_data
supportInterpreter := true
@[default_target]
lean_exe comment_data where
root := `scripts.comment_data
supportInterpreter := true
@[default_target]
lean_exe premises where
root := `scripts.premises
@[default_target]
lean_exe declaration_types where
root := `scripts.declaration_types
@[default_target]
lean_exe goal_comments where
root := `scripts.goal_comments