bookshelf/lakefile.lean

20 lines
397 B
Plaintext
Raw Normal View History

2023-04-22 20:20:37 +00:00
import Lake
2023-05-11 13:27:25 +00:00
open System Lake DSL
2023-04-22 20:20:37 +00:00
package «bookshelf»
require mathlib from git
"https://github.com/leanprover-community/mathlib4.git" @
2023-12-14 19:49:31 +00:00
"v4.3.0"
2023-08-15 13:55:46 +00:00
require std from git
2023-05-02 15:14:50 +00:00
"https://github.com/leanprover/std4.git" @
2023-12-14 19:49:31 +00:00
"v4.3.0"
2023-12-14 21:09:09 +00:00
meta if get_config? env = some "dev" then
2023-12-14 22:24:10 +00:00
require «doc-gen4» from "./doc-gen4"
2023-04-22 20:20:37 +00:00
@[default_target]
lean_lib «Bookshelf» {
2023-05-08 19:43:54 +00:00
roots := #[`Bookshelf, `Common]
2023-04-22 20:20:37 +00:00
}