You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+1, it's a bit hacky but it's the best we have right now. Prior, I was just iterating off the dependencies of each binary of a stub native library, but I took that out since it seemed messier to me. Keen to see what happens
We actually do a variant of that stub native library thing in allwpilib for wpilibj. Except we use an executable, and just run the install task for that executable. That dumps all shared deps into the install folder, and then we just point JNI to load from that directory.
But for just grabbing remote dependencies, I can definitely make an easier way. I'll add you to any PR's that I do that get closer to that goal.
https://github.com/GrappleRobotics/libgrapplefrc/blob/master/build.gradle#L112
The way these are being grabbed here is kind of hacky, we should have a better way to support this.
The text was updated successfully, but these errors were encountered: