1 Star 0 Fork 0

ljh-gd/paho.mqtt.cpp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install_catch2.sh 498 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
#
# install_catch2.sh
#
# Travis CI build/test helper script for the Eclipse Paho C++ library.
# This installs Catch2 into the VM.
#
set -ex
VERSION=2.9.1
# Install Catch2 from sources
wget https://github.com/catchorg/Catch2/archive/v${VERSION}.tar.gz
tar -xf v${VERSION}.tar.gz
cd Catch2-${VERSION}/
cmake -Bbuild -H. -DBUILD_TESTING=OFF
# CMake bin is installed in a strange place where
# sudo can not find by default.
sudo env "PATH=$PATH" cmake --build build/ --target install
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ljh-gd/paho.mqtt.cpp.git
git@gitee.com:ljh-gd/paho.mqtt.cpp.git
ljh-gd
paho.mqtt.cpp
paho.mqtt.cpp
master

搜索帮助