forked from leanprover/LNSym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lakefile.lean
33 lines (25 loc) · 1.01 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
import Lake
open Lake DSL
package «lnsym» where
-- add package configuration options here
lean_lib «Arm» where
-- add library configuration options here
lean_lib «Specs» where
-- add library configuration options here
lean_lib «Tests» where
-- add library configuration options here
lean_lib «Proofs» where
-- add library configuration options here
lean_lib «Tactics» where
-- add library configuration options here
@[default_target]
lean_exe «lnsym» where
root := `Main
-- Enables the use of the Lean interpreter by the executable (e.g.,
-- `runFrontend`) at the expense of increased binary size on Linux.
-- Remove this line if you do not need such functionality.
-- supportInterpreter := true
-- We let mathlib pick a compatible std library.
-- require std from git "https://github.com/leanprover/std4" @ "main"
require mathlib from git "https://github.com/leanprover-community/mathlib4.git" @ "master"
require auto from git "https://github.com/leanprover-community/lean-auto.git" @ "main"