Brian Silverman | 890a32a | 2018-03-11 15:41:56 -0700 | [diff] [blame] | 1 | :: set working directory to where the compiled lib is |
| 2 | cd %~dp0\Debug |
| 3 | |
| 4 | :: move the headers into the WPILIB folder for FRC applications |
| 5 | xcopy /Y /E ..\..\Phoenix-frc-lib\cpp\include\ctre %HOMEPATH%\wpilib\user\cpp\include\ctre |
| 6 | |
| 7 | :: move the driver headers into the WPILIB folder for FRC applications |
| 8 | xcopy /Y /E ..\..\Phoenix-frc-lib\libraries\driver\include\ctre %HOMEPATH%\wpilib\user\cpp\include\ctre |
| 9 | |
| 10 | :: move the low level static lib so Robot apps use it |
| 11 | echo F|xcopy /Y /E .\libCTRE_Phoenix.a %HOMEPATH%\wpilib\user\cpp\lib\libCTRE_Phoenix.a |