-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlakefile.lean
41 lines (32 loc) · 951 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
import Lake
open Lake DSL
package «chorlean» where
-- add package configuration options here
lean_lib «Chorlean» where
-- add library configuration options here
require mathlib from git
"https://github.com/leanprover-community/mathlib4.git" @ "bump/v4.10.0"
require socket from git
"https://github.com/hargoniX/socket.lean" @ "main"
@[default_target]
lean_exe «chorlean» where
root := `Main
lean_exe auth where
root := `examples.sso_auth
root := `examples.sso_auth
moreLeancArgs := #["-fPIC"]
supportInterpreter := true
lean_exe merge where
root := `examples.mergesort
root := `examples.mergesort
moreLeancArgs := #["-fPIC"]
supportInterpreter := true
lean_exe books where
root := `examples.bookseller
root := `examples.bookseller
moreLeancArgs := #["-fPIC"]
supportInterpreter := true
lean_exe RPS where
root := `examples.RockPaperScissors
moreLeancArgs := #["-fPIC"]
supportInterpreter := true