I’ve added this module in build.cs,
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine","libzip"});
and referenced it in cpp,
#include "libzip/zip.h"
but when I compile, I get this error. LNK2019: unresolved external symbol
I looked it up and found that BCryptOpenAlgorithmProvider
comes from bcrypt.h
in the Windows Kit, but I’m not sure what went wrong. How can I fix this error?