crypto51 debug/release libraries were swapped
always link to release; we can't be uploading a 6.5 meg debug .lib every time something in crypto51 changes
This commit is contained in:
@@ -16,11 +16,11 @@ using namespace CryptoPP;
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
#ifdef DEBUG
|
// #ifdef DEBUG
|
||||||
#pragma comment(lib, "crypto51\\Release\\cryptlib.lib")
|
// #pragma comment(lib, "crypto51/Debug/cryptlib.lib")
|
||||||
#else
|
// #else
|
||||||
#pragma comment(lib, "crypto51\\Debug\\cryptlib.lib")
|
#pragma comment(lib, "crypto51/Release/cryptlib.lib")
|
||||||
#endif
|
// #endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const CString PRIVATE_KEY_PATH = "Data/private.key.rsa";
|
static const CString PRIVATE_KEY_PATH = "Data/private.key.rsa";
|
||||||
|
|||||||
Reference in New Issue
Block a user