-
Notifications
You must be signed in to change notification settings - Fork 24
Description
The windows build doesnt end up outputting a .lib file in the /build/binaries/helloSharedLibrary/ directory, so the executable isnt able to link to it (therefore fails).
The library is in the static folder, copying it to the shared directory will make it work, but I dont think that is the intent. Oddly, the samples in the gradle release produce a .lib file in the shared folder, and as far as I can tell, the gradle.build file is the same.
Any ideas what is going on? Why isnt there a .lib file in the shared folder for this project? Just trying to wrap my head around what the gradle native plugin is doing. My first thought is that the link step should actually be looking for the .lib in the "static" folder, not the shared folder, but I dont know enough about the domain to know if this is a bug.