pss-total/ngen.toml
2024-05-24 18:44:00 -05:00

18 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"]