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 {
|
2024-09-06 22:01:36 -07:00
|
|
|
roots := #[`Pantograph]
|
2024-03-06 15:27:22 -08:00
|
|
|
defaultFacets := #[LeanLib.sharedFacet]
|
2023-05-07 15:19:45 -07:00
|
|
|
}
|
|
|
|
|
2024-09-06 22:01:36 -07:00
|
|
|
lean_lib Repl {
|
|
|
|
}
|
2023-05-07 15:19:45 -07:00
|
|
|
@[default_target]
|
2024-09-06 22:01:36 -07:00
|
|
|
lean_exe repl {
|
2023-05-07 15:19:45 -07:00
|
|
|
root := `Main
|
2024-08-18 12:22:59 -07:00
|
|
|
-- 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"
|
2023-05-22 14:49:56 -07:00
|
|
|
lean_lib Test {
|
|
|
|
}
|
2024-08-18 12:22:59 -07:00
|
|
|
@[test_driver]
|
2023-05-22 11:47:46 -07:00
|
|
|
lean_exe test {
|
|
|
|
root := `Test.Main
|
2024-08-18 12:22:59 -07:00
|
|
|
-- Solves the native symbol not found problem
|
2023-05-22 11:47:46 -07:00
|
|
|
supportInterpreter := true
|
|
|
|
}
|