Menu

[r1498]: / advanced / Windows / curllink.h  Maximize  Restore  History

Download this file

19 lines (15 with data), 652 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
/* 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" )
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.