Skip to content

dqrobotics/cpp-interface-qpoases

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cpp-interface-qpoases

Interface between DQ Robotics and qpOASES

Refer to the docs

Recommended installation process for qpOASES

The following commands will clone the repository and install qpOASES as a shared library.

cd ~/Downloads
git clone https://github.com/coin-or/qpOASES.git
cd qpOASES
sed -i -e 's/option(BUILD_SHARED_LIBS "If ON, build shared library instead of static" OFF)/option(BUILD_SHARED_LIBS "If ON, build shared library instead of static" ON)/g' CMakeLists.txt
mkdir build
cd build
cmake ..
make -j16
sudo make install
sudo ldconfig