> Can I specify binary-specific defines for the nimble build process?

You can specify which kind of binary built with nimble task. See 
[here](https://github.com/nim-lang/nimble#creating-packages)

You can also make a config file specific to your nim file so the name is 
_yourfile.nim.cfg_ and put the options in it like
    
    
    -d:it_is_for_algo{1,2}
    
    
    Run

So whenever `nim c yourfile.nim` is invoked, it automatically add options 
specified in your config file.

Reply via email to