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;
|
||||
|
||||
#ifdef WIN32
|
||||
#ifdef DEBUG
|
||||
#pragma comment(lib, "crypto51\\Release\\cryptlib.lib")
|
||||
#else
|
||||
#pragma comment(lib, "crypto51\\Debug\\cryptlib.lib")
|
||||
#endif
|
||||
// #ifdef DEBUG
|
||||
// #pragma comment(lib, "crypto51/Debug/cryptlib.lib")
|
||||
// #else
|
||||
#pragma comment(lib, "crypto51/Release/cryptlib.lib")
|
||||
// #endif
|
||||
#endif
|
||||
|
||||
static const CString PRIVATE_KEY_PATH = "Data/private.key.rsa";
|
||||
|
||||
Reference in New Issue
Block a user