I figured out how to install VC ++ to compile the code into a .lib file, not a .exe, but I had problems connecting lib to my other .obj files.
This is how I set up the library and application folders. (I'm not sure if this is correct)
AppFolder
App.sln
App.ncb
*.h
*.cpp
Debug
*.obj
App.exe
and somewhere else on the hard drive ...
LibraryFolder
lib
Library.lib
include
LibrarySolutionFolder
Library.sln
Library.ncb
*.h
*.cpp
Debug
*.obj
Library.lib
I was # including a library of * .h files from my cpp app files and everything compiles fine. It's just that when it binds, I get a list of all the .lib files that are being viewed, and Library.lib does not exist, although I listed them in the VC ++ directories. How can I relate this? (And did I properly structure the library folders correctly?)
source
share