Click here to Skip to main content
15,893,161 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am creating a source file. In that I am defining TARGETLIB. One way is TARGETLIBS=$(SDK_LIB_PATH)\setupapi.lib

But to include a library which is not in "SDK_LIB_PATH", how to include?
I have library by name proxy.lib in "c:\sharing\suresh" folder. how to include this?
Posted
Updated 30-May-10 22:45pm
v2

1 solution

Can you compile the following in you source file ? :) :
#pragma comment(lib, "c:\\sharing\\suresh\\proxi.lib")
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900