Correct way to build external library after 130
hamishwillee opened this issue · 1 comments
hamishwillee commented
What is the correct way to build and install an external library after #130 ? I am assuming it is (for example at same folder level as DroneCore folder):
sudo make EXTERNAL_DIR=../external_example default install
THe default
appears to be required, though it seems overly verbose.
hamishwillee commented
I have confirmed how this works and updated mavlink/MAVSDK-docs#62
Essentially you need sudo for the install step. You only need to specify External dir during make step.
make clean
make default EXTERNAL_DIR=../external_example
sudo make default install