We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
option("test1") set_default(true) set_showmenu(true) set_description("test1 option") option("test2") set_default(true) set_showmeu(true) option("test3") set_default("hello")
For some simple scope settings, we can simplify to
option("test1", {default = true, showmenu = true, description = "test1 option"}) option("test2", {default = true, showmenu = true}) option("test3", {default = "hello"})
In addition to option, we can also simplify some target scopes.
target("demo") set_kind("binary") add_files("src/*.c")
target("demo", {kind = "binary", files = "src/*.c"})
The text was updated successfully, but these errors were encountered:
scope()
No branches or pull requests
For some simple scope settings, we can simplify to
In addition to option, we can also simplify some target scopes.
The text was updated successfully, but these errors were encountered: