[build] Make Protobuf optional in CMake build (#7061)

This commit is contained in:
Tyler Veness
2024-09-12 23:44:19 -07:00
committed by GitHub
parent b9409a4bcf
commit d44b651558
77 changed files with 168 additions and 73 deletions

View File

@@ -235,5 +235,7 @@ class WPILIB_DLLEXPORT ArmFeedforward {
};
} // namespace frc
#ifndef NO_PROTOBUF
#include "frc/controller/proto/ArmFeedforwardProto.h"
#endif
#include "frc/controller/struct/ArmFeedforwardStruct.h"

View File

@@ -87,5 +87,7 @@ class WPILIB_DLLEXPORT DifferentialDriveFeedforward {
};
} // namespace frc
#ifndef NO_PROTOBUF
#include "frc/controller/proto/DifferentialDriveFeedforwardProto.h"
#endif
#include "frc/controller/struct/DifferentialDriveFeedforwardStruct.h"

View File

@@ -21,5 +21,7 @@ struct DifferentialDriveWheelVoltages {
} // namespace frc
#ifndef NO_PROTOBUF
#include "frc/controller/proto/DifferentialDriveWheelVoltagesProto.h"
#endif
#include "frc/controller/struct/DifferentialDriveWheelVoltagesStruct.h"

View File

@@ -225,5 +225,7 @@ class ElevatorFeedforward {
};
} // namespace frc
#ifndef NO_PROTOBUF
#include "frc/controller/proto/ElevatorFeedforwardProto.h"
#endif
#include "frc/controller/struct/ElevatorFeedforwardStruct.h"