forked from leanprover/LNSym
-
Notifications
You must be signed in to change notification settings - Fork 2
/
lakefile.lean
32 lines (24 loc) · 1018 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
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
require LeanSAT from git "https://github.com/leanprover/leansat" @ "main"
-- require std from git "https://github.com/leanprover/std4" @ "nightly-testing-2024-02-22"
-- require auto from git "https://github.com/leanprover-community/lean-auto.git" @ "nightly-testing-2024-02-22"