a portable and fast pairing-based cryptography library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
mcl/include/cybozu/link_ssleay32.hpp

19 lines
434 B

#pragma once
/**
@file
@brief link ssleay32.lib of openssl
@author MITSUNARI Shigeo(@herumi)
*/
#if defined(_WIN32) && defined(_MT)
#if _MSC_VER >= 1900 // VC2015
#ifdef _WIN64
#pragma comment(lib, "mt/14/ssleay32.lib")
#else
#pragma comment(lib, "mt/14/32/ssleay32.lib")
#endif
// #elif _MSC_VER == 1800 // VC2013
#else
#pragma comment(lib, "mt/12/ssleay32.lib")
#endif
#pragma comment(lib, "user32.lib")
#endif