To use some recompiled libraries (f.ex. boost chrono) i need to specify the library folder in visual studio at Properties -> VC++ Directories -> Library Directories. How can
You need to specify /link <linkoptions> for cl.exe command line to pass the required settings to the linker:
/link <linkoptions>
cl -I "path\to\Boost" test.cpp /link /LIBPATH:"C:\path\to\Boost\stage\lib"