Files
m2dev-client-src/extern/include/cryptopp/cryptoppLibLink.h
d1str4ught 4be475f111 init
2025-08-18 19:46:48 +02:00

23 lines
391 B
C

#ifndef _CRYPTOPPLIBLINK_H_
#define _CRYPTOPPLIBLINK_H_
#ifdef _DLL
#ifndef CRYPTOPP_IMPORTS
#define CRYPTOPP_IMPORTS
#endif
#endif
#if defined(CRYPTOPP_IMPORTS)
#include "dll.h"
#else
#ifdef _WIN32
#ifdef _DEBUG
#pragma comment( lib, "Cryptopp_lib_debug.lib" )
#else
#pragma comment( lib, "Cryptopp_lib_release.lib" )
#endif
#endif
#endif
#endif /* !_CRYPTOPPLIBLINK_H_ */