Hello,
I’ve successfully gotten LexActivator working for OS X, now I’m trying to get things up and running for windows distribution. Form another forum post I saw that I need to do some extra work to link LexActivator statically, but it wasn’t clear to me exactly what to do. I was hoping someone could give me a quick walk-through of the extra steps involved.
Currently I’ve added the respective libs for x86 and x84 like this:
#if _WIN32
#if _WIN64
#pragma comment(lib,"…\\…\\Cryptlex\\x64\\LexActivator.lib")
#pragma comment(lib,"…\\…\\Cryptlex\\x64\\libcurl_MD.lib")
#else
#pragma comment(lib,"…\\…\\Cryptlex\\x84\\LexActivator.lib")
#pragma comment(lib,"…\\…\\Cryptlex\\x84\\libcurl_MD.lib")
#endif
#endif
And I’ve included the header file in my project. When I build I’m getting some unresolved symbol errors, which I’m assuming are from not correctly linking the libraries.
I’m using VS 2017 on Windows 7, and I don’t have much experience with Visual Studio/ developing for windows, so any help/info would be greatly appreciated.
Thanks!
MSK