Changed config for competitest

This commit is contained in:
EsVagy42 2025-03-16 23:49:35 +00:00
parent afbad2e1f4
commit 66ee299f31

View file

@ -1 +1,27 @@
{ plugins = { competitest = { enable = true; }; }; } {
plugins = {
competitest = {
enable = true;
settings = {
compile_command = {
cpp = {
exec = "g++";
args = [
"-Wall"
"$(FNAME)"
"-o"
"$(FNOEXT)"
"-g"
"-Wextra"
"-Wshadow"
"-Wconversion"
"-Wfloat-equal"
"-Wduplicated-cond"
"-Wlogical-op"
];
};
};
};
};
};
}