I have this nim.cfg file :
--cc:"vcc"
--cincludes:"C:/dev/include"
--passC:"-DDEF"
--clibdir:"C:/dev/lib"
--clib:"tlib"
--out:"C:/temp/mylib.dll"
When I compile my code (nim 2.0.6), I have this error :
cl : Command line warning D9002 : unknown option '/LIBPATH:C:\dev\lib' ignored
LINK : fatal error LNK1181: unable to open input file 'tlib.lib'.
I'd like to keep the same configuration between --cc:gcc and --cc:vcc.
There is another way ?