Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove compile flags #88

Merged
merged 2 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/robot_models/kdl/RobotModelKDL.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef ROBOTMODELKDL_HPP
#define ROBOTMODELKDL_HPP

#include "core/RobotModel.hpp"
#include "../../core/RobotModel.hpp"

#include <kdl/tree.hpp>
#include <kdl/jacobian.hpp>
Expand Down
4 changes: 2 additions & 2 deletions src/robot_models/kdl/test/test_robot_model_kdl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
#include <boost/test/unit_test.hpp>
#include "../RobotModelKDL.hpp"
#include "../KinematicChainKDL.hpp"
#include <wbc/core/RobotModelConfig.hpp>
#include "../../../core/RobotModelConfig.hpp"
#include <kdl/chainfksolverpos_recursive.hpp>
#include <kdl/chainfksolvervel_recursive.hpp>
#include <kdl/chainjnttojacsolver.hpp>
#include <wbc/tools/URDFTools.hpp>
#include "../../../tools/URDFTools.hpp"
#include <kdl_parser/kdl_parser.hpp>
#include "../../test/test_robot_model.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>
#include "../RobotModelPinocchio.hpp"
#include <wbc/core/RobotModelConfig.hpp>
#include <wbc/tools/URDFTools.hpp>
#include "../../../core/RobotModelConfig.hpp"
#include "../../../tools/URDFTools.hpp"
#include "../../test/test_robot_model.hpp"

using namespace std;
Expand Down
2 changes: 1 addition & 1 deletion src/robot_models/test/test_robot_model.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <base/samples/RigidBodyStateSE3.hpp>
#include <base/samples/Joints.hpp>
#include <wbc/core/RobotModel.hpp>
#include "../../core/RobotModel.hpp"

namespace wbc {
void printRbs(base::samples::RigidBodyStateSE3 rbs);
Expand Down
2 changes: 1 addition & 1 deletion src/solvers/eiquadprog/test/test_eiquadprog_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <boost/test/unit_test.hpp>
#include <iostream>
#include <sys/time.h>
#include <wbc/core/QuadraticProgram.hpp>
#include "../../../core/QuadraticProgram.hpp"
#include "../EiquadprogSolver.hpp"

using namespace wbc;
Expand Down
2 changes: 1 addition & 1 deletion src/solvers/proxqp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pkg_search_module(proxsuite REQUIRED IMPORTED_TARGET proxsuite)
set(SOURCES ProxQPSolver.cpp)
set(HEADERS ProxQPSolver.hpp)

list(APPEND PKGCONFIG_REQUIRES proxqp)
list(APPEND PKGCONFIG_REQUIRES proxsuite)
list(APPEND PKGCONFIG_REQUIRES wbc-core)
string (REPLACE ";" " " PKGCONFIG_REQUIRES "${PKGCONFIG_REQUIRES}")

Expand Down
2 changes: 1 addition & 1 deletion src/solvers/proxqp/test/test_proxqp_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <boost/test/unit_test.hpp>
#include <iostream>
#include <sys/time.h>
#include <wbc/core/QuadraticProgram.hpp>
#include "../../../core/QuadraticProgram.hpp"
#include "../ProxQPSolver.hpp"

using namespace wbc;
Expand Down
2 changes: 1 addition & 1 deletion src/solvers/qpswift/QPSwiftSolver.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "QPSwiftSolver.hpp"
#include <wbc/core/QuadraticProgram.hpp>
#include "../../core/QuadraticProgram.hpp"
#include <base-logging/Logging.hpp>

#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion src/solvers/qpswift/test/test_qpswift_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <boost/test/unit_test.hpp>
#include <iostream>
#include <sys/time.h>
#include <wbc/core/QuadraticProgram.hpp>
#include "../../../core/QuadraticProgram.hpp"
#include "../QPSwiftSolver.hpp"

using namespace wbc;
Expand Down
Loading