17 lines
319 B
TOML
17 lines
319 B
TOML
[config]
|
|
compile_commands = true
|
|
|
|
[targets.main]
|
|
outfile = "pss-total-waybar"
|
|
compiler_flags = ["-I."]
|
|
sources = [
|
|
"src/main.c",
|
|
]
|
|
|
|
[targets.debug]
|
|
compiler_flags = ["-fsanitize=address", "-O0", "-g"]
|
|
linker_flags = ["-fsanitize=address"]
|
|
|
|
[targets.release]
|
|
compiler_flags = ["-flto", "-O2"]
|
|
linker_flags = ["-flto"]
|