This message was deleted.
# native
s
This message was deleted.
w
did you use the
install
task then ran on the command line
nope, my issue was just with
./gradlew runTests
. Install wasn't copying over the shared library, which is what I figured it should be doing and why I added my Copy hack. Maybe I'm just configuring something incorrectly...? It's odd, though, because compile and link worked fine against the dependency project, just not running.
d
The issue is here, it doesn’t attach the library to the
runtime*
Configuration
. I’m guessing where we didn’t originally attached the library is one of the many open question: “how do you know the binary produced is a shared library vs a static library” and “how to locate the import library on windows”. Aside from those, you could modify the sample to attach the binary.
thank you 1