2
0

curllink.h 634 B

123456789101112131415161718
  1. /* We use pragma statements to tell the linker what we need to link
  2. with. Since Curl requires Winsock, Winmm, and libcurl, and no other
  3. project does, we include this file into the Curl transport source code
  4. to tell the linker to add these libs.
  5. Alternatively, the USER can add the libraries to LINK with as
  6. NEEDED!
  7. */
  8. #ifdef _DEBUG
  9. #pragma comment( lib, "C:\\FG\\FGCOMXML\\curl\\build\\Debug\\Lib_curl.lib" )
  10. #else
  11. #pragma comment( lib, "C:\\FG\\FGCOMXML\\curl\\build\\Release\\Lib_curl.lib" )
  12. #endif
  13. #pragma comment( lib, "Winmm.lib" )
  14. #pragma comment( lib, "Ws2_32.lib" )
  15. #pragma comment( lib, "Wldap32.lib" )