Pantograph/lakefile.lean

25 lines
468 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 {
}
@[default_target]
lean_exe pantograph {
root := `Main
2023-05-12 16:12:21 -07:00
-- Somehow 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
"https://github.com/lurk-lab/LSpec.git" @ "88f7d23e56a061d32c7173cea5befa4b2c248b41"
lean_lib Test {
}
2023-05-22 11:47:46 -07:00
lean_exe test {
root := `Test.Main
-- Somehow solves the native symbol not found problem
supportInterpreter := true
}