Setting compiler and linker directories via pragma in Visual C++

pragma, visual-c++, visual-studio

Solution

The latest list of available pragmas for Visual C++ is available here. I don't see anything there for specifying library paths or anything else like that.

Problem

Is it possible in Visual C++ to set additional include directories and additional libary directories in the source code itself, through pragma definitions (similarly to #pragma comment(lib, "xxx.lib") to link specific libs)?

Original source