> I am currently trying to include the cryptlib.lib to an my lib > project. What I am trying to do is use the ECC functionality of crypto > and use it on my current lib project. I included it in the setting of > the library (project settings) but I get a lot of errors. My lib > project doesnt use MFC (btw in using Visual Studio 6.0). Could you > please point me in the right direction? If you were me, how do you go > about integrating a lib to another lib?
I have my own project for static cryptopp lib (using VS2003 though), which is close enough to what to are trying to do. I don't remember doing anything special, aside from including nessesary source files and setting proper include paths. What kind of errors are you getting? Those are my compiler flags (for debug build): /Od /I "..\cryptopp\include" /D "WIN32" /D "_DEBUG" /D "_LIB" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "_UNICODE" /D "UNICODE" / Gm /EHsc /RTC1 /MDd /GR /YX"pch.h" /Fp"Debug/libcryptoppD.pch" / Fo"Debug/" /Fd"Debug/vc70.pdb" /W3 /nologo /c /Wp64 /ZI /TP /wd4100 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to [email protected]. More information about Crypto++ and this group is available at http://www.cryptopp.com. -~----------~----~----~----~------~----~------~--~---
