forked from Mirrors/freeswitch
00654d880e
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
19 lines
634 B
C
19 lines
634 B
C
/* We use pragma statements to tell the linker what we need to link
|
|
with. Since Curl requires Winsock, Winmm, and libcurl, and no other
|
|
project does, we include this file into the Curl transport source code
|
|
to tell the linker to add these libs.
|
|
|
|
Alternatively, the USER can add the libraries to LINK with as
|
|
NEEDED!
|
|
*/
|
|
|
|
#ifdef _DEBUG
|
|
#pragma comment( lib, "C:\\FG\\FGCOMXML\\curl\\build\\Debug\\Lib_curl.lib" )
|
|
#else
|
|
#pragma comment( lib, "C:\\FG\\FGCOMXML\\curl\\build\\Release\\Lib_curl.lib" )
|
|
#endif
|
|
|
|
#pragma comment( lib, "Winmm.lib" )
|
|
#pragma comment( lib, "Ws2_32.lib" )
|
|
#pragma comment( lib, "Wldap32.lib" )
|