Inside a BlueprintFunctionLibrary I want to use a library for the code I need, and to do that from what I read from here I need to add into UBT a link to that library. And to do that, this seems to be the line that I need to add PublicAdditionalLibraries.Add(Path.Combine(ModuleDirectory, "lib", "foo.a"));
. Now the problem is that I don’t know what each parameters stand for. Can someone explain them?
What I need to tell it is that I’m using jvm.lib from this location: C:\Program Files\Java\jdk1.8.0_333\lib
Also the header files for it I added them into VC++ Directories/Include Directories. Is that what I should have done? Or beside that I need to also do something else for the header files?
One more thing just to be sure, that line of code I need to add it into TestProject.Build.cs from …\TestProject\Source\TestProject?