You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
362 B
Plaintext
18 lines
362 B
Plaintext
import Lake
|
|
open Lake DSL
|
|
|
|
package GameServer
|
|
|
|
-- Using this assumes that each dependency has a tag of the form `v4.X.0`.
|
|
def leanVersion : String := s!"v{Lean.versionString}"
|
|
|
|
require std from git "https://github.com/leanprover/std4.git" @ leanVersion
|
|
|
|
lean_lib GameServer
|
|
|
|
@[default_target]
|
|
lean_exe gameserver {
|
|
root := `Main
|
|
supportInterpreter := true
|
|
}
|