There is no need to write your lib name in project settings. The easy way is to just point to the directory the .lib file is stored or as already mentioned, like normaly you do with .h file ie. #include "test.h" with lib you write : #pragma comment (lib, "test.lib") wherever you use your library. thats it. Make sure you compile your libraries in release mode when creating the .lib Hope this helps :o)