16 lines
310 B
Text
16 lines
310 B
Text
import Lake.Package
|
|
|
|
open Lake System
|
|
|
|
def package : PackageConfig := {
|
|
name := "lake"
|
|
version := "bootstrap"
|
|
rootDir := FilePath.mk ".." / ".."
|
|
oleanDir := "."
|
|
leancArgs := #["-O3", "-DNDEBUG"]
|
|
linkArgs :=
|
|
if Platform.isWindows then
|
|
#["-Wl,--export-all"]
|
|
else
|
|
#["-rdynamic"]
|
|
}
|