blob: a9610719a7a6590c7afea4d84b73d6f37a6520ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import Lake
open Lake DSL
package «bananas» where
-- add package configuration options here
lean_lib «Bananas» where
-- add library configuration options here
@[default_target]
lean_exe «bananas» where
root := `Main
-- Enables the use of the Lean interpreter by the executable (e.g.,
-- `runFrontend`) at the expense of increased binary size on Linux.
-- Remove this line if you do not need such functionality.
supportInterpreter := true
|