File tree Expand file tree Collapse file tree 5 files changed +5
-3
lines changed
Expand file tree Collapse file tree 5 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y \
1414 && apt-get clean && rm -rf /var/lib/apt/lists/*
1515
1616# ビルド時に日本語が含まれていたらエラーになるので,C.UTF-8を指定
17- ENV LANG=C.UTF-8
17+ ENV LANG=C.UTF-8
1818
1919# RasPike-ART を clone
2020# libraspike-artは,RasPike-ART内で運営がリンクで紐づけていたため,直接cloneする必要がある
Original file line number Diff line number Diff line change @@ -15,12 +15,14 @@ APPL_DIRS += \
1515 $(mkfile_path ) modules\
1616 $(mkfile_path ) modules/API\
1717 $(mkfile_path ) modules/calculators\
18+ $(mkfile_path ) modules/common\
1819 $(mkfile_path ) modules/CameraCapture
1920
2021INCLUDES += \
2122 -I$(mkfile_path ) modules\
2223 -I$(mkfile_path ) modules/API\
2324 -I$(mkfile_path ) modules/calculators\
25+ -I$(mkfile_path ) modules/common\
2426 -I$(mkfile_path ) modules/CameraCapture \
2527 -I/usr/include/opencv4
2628
Original file line number Diff line number Diff line change 55 **/
66
77#include " Mileage.h"
8- #include " ../common/SystemInfo.h"
98
109double Mileage::calculateWheelMileage (int angle)
1110{
Original file line number Diff line number Diff line change 88#define MILEAGE_H
99
1010#include < cmath>
11+ #include " common/SystemInfo.h"
1112
1213class Mileage {
1314 public:
Original file line number Diff line number Diff line change 44 * @author molpui0726
55 */
66
7- #include " Mileage.h"
87#include < cmath>
98#include < gtest/gtest.h>
9+ #include " Mileage.h"
1010
1111namespace etrobocon2025_test {
1212 TEST (MileageTest, CalculateMileage)
You can’t perform that action at this time.
0 commit comments