thanks! I had tried a config file previously, but i was doing it wrong. I 
misread the compiler guide and had it as `muh_app/config/nim.cfg` and it was 
just silently ignored.

now i have `muh_app/muh_app.nim.cfg`, which is used by the compiler.
    
    
    .exe="gcc-13"
    --warnings: "off"
    --hints: "off"
    --parallel_build: "6"
    
    Run

p.s. if you name the config file with a dash instead of a underscore it will 
just silently ignore your config, and not remind you that nim doesn't like 
dashes. :)

Reply via email to