I can import one project from eclipse into another project, and no errors are showing up, but when I try to deploy it, the console says the import does not exist, and it does not work.
Thanks for your help.
I can import one project from eclipse into another project, and no errors are showing up, but when I try to deploy it, the console says the import does not exist, and it does not work.
Thanks for your help.
You need to have the first project generate a jar, which you can then use in accordance with http://wpilib.screenstepslive.com/s/4485/m/13503/l/682619-3rd-party-libraries
We just tried that, with BREAD-Robot-Core.jar in C:\Users\David Boles\wpilib\java\current\lib, it crashes. If we add:
<fileset file=“C:\Users\David Boles\wpilib\java\current\lib\BREAD-Robot-Core.jar”/>
<path id=“classpath.path”>
<fileset dir="${userLibs.dir}" includes="*.jar"/>
<fileset file="${wpilib.jar}"/>
<fileset file="${networktables.jar}"/>
<fileset file="${opencv.jar}"/>
<fileset file="${cscore.jar}"/>
here
<fileset dir="${userLibs}" erroronmissingdir=“false”/>
</path>
in WPILib’s build.xml it seems to work fine. Are we doing something wrong or is this an issue with WPILib’s 3rd party library building process?
Whoooops!::rtm:: Thanks for the tip Joe.
https://s23.postimg.org/xcqjn0rm3/I_m_bad.png
Any hints on auto-building our core?