I wanted to create a static library to use in my project like Boost library for example.
So I created a Win32 console application project and I chose static library and I compiled it.
Then, in my project I added the directory containing .h file in Properties/Configuration Properties/VC++ Directorie/Include Directories and the directory containing .lib file in Properties/Configuration Properties/VC++ Directorie/Libraries Directories like Boost library, but I have error "LNK2019 unresolved external symbol".
Why it simply doesn't work like boost library while I make the same process?