通知短信+运营短信,5秒速达,支持群发助手一键发送🚀高效触达和通知客户 广告
[TOC] ### 编译 For MacOS: 安装qt5 ``` $ brew install qt5 $ echo 'export PATH="/usr/local/opt/qt/bin:$PATH"' >> ~/.bash_profile ``` 安装botan ``` $ brew install botan $ brew link botan ``` 编译 libQtShadowsocks ``` $ mkdir build && cd build $ cmake .. -DCMAKE\_INSTALL\_PREFIX=/usr/local $ make all $ make install ``` 编译 shadowsocks-qt5 ``` $ brew update $ brew install libqrencode zbar $ mkdir build && cd build $ cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local $ make $ make install ```