tags:

views:

67

answers:

2

There's a #pragma command to link in a library from the source file rather than from the project settings. I just can't seem to remember it.

Can anyone here remind me?

Thanks

+4  A: 
#pragma comment(lib, "library")

http://msdn.microsoft.com/en-us/library/7f0aews7(VS.80).aspx

John Knoeller
+2  A: 

You mean this thing #pragma comment(lib, "Library")

abubacker