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:
Glenn Maynard
2004-05-14 05:45:46 +00:00
parent 97fa5c398e
commit fb8c64b387
+5 -5
View File
@@ -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";