Closed joneugster closed 1 year ago
I would like a global way to set for example set_option tactic.hygienic false for the entire game as I'm now adding that to each level individually.
set_option tactic.hygienic false
Fixed, adding the options to the lakefile.lean
lakefile.lean
package Adam where moreLeanArgs := #["-DautoImplicit=false", "-Dtactic.hygienic=false"] moreServerArgs := #["-DautoImplicit=false", "-Dtactic.hygienic=false"]
I would like a global way to set for example
set_option tactic.hygienic false
for the entire game as I'm now adding that to each level individually.