menu: file --> New --> tab: Projects --> "Win 32 Static Library"
Location: put a directory location for the workspace here.
Project name: fill in with a name for the project.
button:ok, button:finish, button:ok.
Menu: Build --> Set Active Configuration... --> "Win 32 Release" -->
Ok.
Projects --> Settings... --> Tab: C/C++ ---> Project options:
in project options, add these lines:
/D"VISUAL" /I"C:\user\craig\improv\include"
/D"VISUAL" defines the preprocessor variable so that the compiler know it is supposed to include Visual C++ sections of library code. /I"C:\user\craig\improv\include" tells the compiler where the include files for the code exists. Put in the appropriate directory name here.
(Button: OK )
Menu: Project --> Add to Project --> Files... --> Find...
Add all .h and .cpp files in the source directory.
Menu: Project --> Add to Project --> Files... --> Find...
Add all .h files in the include directory.
The default library location is in ...Release/projectname.lib
To compile source files one at a time, you can press
control-F7 after highlighting each source file.