Pantograph/lakefile.lean

30 lines
548 B
Plaintext
Raw Normal View History

2023-05-07 15:19:45 -07:00
import Lake
open Lake DSL
2023-05-12 16:12:21 -07:00
package pantograph
2023-05-07 15:19:45 -07:00
lean_lib Pantograph {
roots := #[`Pantograph]
defaultFacets := #[LeanLib.sharedFacet]
2023-05-07 15:19:45 -07:00
}
lean_lib Repl {
}
2023-05-07 15:19:45 -07:00
@[default_target]
lean_exe repl {
2023-05-07 15:19:45 -07:00
root := `Main
-- Solves the native symbol not found problem
2023-05-09 22:51:19 -07:00
supportInterpreter := true
2023-05-07 15:19:45 -07:00
}
2023-05-17 21:58:03 -07:00
2023-05-22 11:47:46 -07:00
require LSpec from git
2024-10-06 16:10:18 -07:00
"https://github.com/lenianiva/LSpec.git" @ "c492cecd0bc473e2f9c8b94d545d02cc0056034f"
lean_lib Test {
}
@[test_driver]
2023-05-22 11:47:46 -07:00
lean_exe test {
root := `Test.Main
-- Solves the native symbol not found problem
2023-05-22 11:47:46 -07:00
supportInterpreter := true
}