Skip to content

Commit

Permalink
Merge pull request #88 from ARC-OPT/remove_compile_flags
Browse files Browse the repository at this point in the history
Remove compile flags
  • Loading branch information
dmronga authored Feb 23, 2024
2 parents c85c231 + d3d31e9 commit 04ee3d9
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
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

0 comments on commit 04ee3d9

Please sign in to comment.