doug/lakefile.lean
qwjyh a7b9963740
Some checks failed
Lean Action CI / build (push) Has been cancelled
lake + some packages
2024-10-20 16:17:37 +09:00

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