1
0
mirror of https://github.com/eclipse/paho.mqtt.cpp.git synced 2025-05-09 03:11:23 +08:00
paho.mqtt.cpp/install_paho_mqtt_c.sh
2020-10-23 09:29:20 -04:00

19 lines
402 B
Bash
Executable File

#!/bin/bash
#
# Installs the matching version of Paho MQTT C library required by the C++ lib.
#
set -ex
git clone https://github.com/eclipse/paho.mqtt.c.git
cd paho.mqtt.c
git checkout v1.3.6
cmake -Bbuild -H. -DPAHO_WITH_SSL=ON -DPAHO_BUILD_STATIC=ON -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DPAHO_ENABLE_TESTING=OFF
sudo env "PATH=$PATH" cmake --build build/ --target install
sudo ldconfig
exit 0