Hello!
I have trouble linking LexActivator in VS2017 (x64). I’m new to cryptlex and I develop normally under Linux thus my Visual Studio experience is limited. The page
says: " LexActivator example project for C contains the LexActivator.h header file. In addition to that it includes LexActivator.lib"
This is not true, LextActivator.lib is not contained in the project. I have downloaded and copied it into the x64 directory. Then I opened Sample->Properties->Linker->Input and under AdditionalDependencies added
x64/LexActivator.lib;x64/libcurl_MD.lib;%(AdditionalDependencies)
It compiles but the linker complains:
1>Sample.obj : error LNK2001: unresolved external symbol __imp_GetLicenseExpiryDate
1>Sample.obj : error LNK2001: unresolved external symbol __imp_SetTrialActivationMetadata
1>Sample.obj : error LNK2001: unresolved external symbol __imp_ActivateTrial
1>Sample.obj : error LNK2001: unresolved external symbol __imp_SetAppVersion
1>Sample.obj : error LNK2001: unresolved external symbol __imp_ActivateLicense
1>Sample.obj : error LNK2001: unresolved external symbol __imp_SetProductId
1>Sample.obj : error LNK2001: unresolved external symbol __imp_IsTrialGenuine
1>Sample.obj : error LNK2001: unresolved external symbol __imp_SetLicenseKey
1>Sample.obj : error LNK2001: unresolved external symbol __imp_IsLicenseGenuine
1>Sample.obj : error LNK2001: unresolved external symbol __imp_SetProductData
1>Sample.obj : error LNK2001: unresolved external symbol __imp_GetTrialExpiryDate
1>Sample.obj : error LNK2001: unresolved external symbol __imp_SetActivationMetadata
1>C:\lexact\examples\x64\Release\Sample.exe : fatal error LNK1120: 12 unresolved externals
1>Done building project “Sample.vcxproj” – FAILED.
Please let me know how to solve the issue. Thank you.