22 lines
427 B
Text
22 lines
427 B
Text
import Lake
|
|
open Lake DSL
|
|
|
|
meta if get_config? env = some "dev" then -- dev is so not everyone has to build it
|
|
require «doc-gen4» from git "https://github.com/leanprover/doc-gen4" @ "v4.12.0"
|
|
|
|
package "doug" where
|
|
version := v!"0.1.0"
|
|
|
|
lean_lib «Doug» where
|
|
-- add library configuration options here
|
|
|
|
@[default_target]
|
|
lean_exe "doug" where
|
|
root := `Main
|
|
|
|
/--
|
|
Doug
|
|
-/
|
|
script test (args) do
|
|
IO.println args
|
|
pure 0
|