Skip to content

Commit

Permalink
Added config CLI tool.
Browse files Browse the repository at this point in the history
  • Loading branch information
robby-phd committed Oct 29, 2024
1 parent 0f6d7b1 commit f17eb00
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion shared/src/main/scala/org/sireum/logika/cli.scala
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,24 @@ object cli {
)
)

val logikaConfig: Tool = Tool(
name = "logikaConfig",
command = "config",
description = "Logika Config",
header = "Sireum Logika Config",
usage = "<option>* <file.sc>",
usageDescOpt = None(),
opts = ISZ(),
groups = ISZ()
)


val group: Group = Group(
name = "logika",
description = "Logika tools",
header = "Logika Tools for Slang",
unlisted = F,
subs = ISZ(logikaVerifier)
subs = ISZ(logikaConfig, logikaVerifier)
)

}

0 comments on commit f17eb00

Please sign in to comment.