Skip to content

Commit

Permalink
Adjust package name casing (#3)
Browse files Browse the repository at this point in the history
* fix package capitalisation

* lower case
  • Loading branch information
joneugster authored Feb 28, 2024
1 parent afa26ec commit da61e2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lakefile.lean
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ elab "#get_libstdcpp" : command =>

#get_libstdcpp -- now available as `libstdcpp` declaration

package «DateTime» where
package datetime where
precompileModules := true
moreLinkArgs := match libstdcpp with | none => #[] | some x => #[x.toString]
-- add package configuration options here

lean_lib «DateTime» where
lean_lib DateTime where
-- add library configuration options here

@[default_target]
lean_exe «datetime» where
lean_exe datetime where
root := `Main
supportInterpreter := true

Expand Down

0 comments on commit da61e2a

Please sign in to comment.