summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2020-08-11 12:43:52 +0800
committerIru Cai <mytbk920423@gmail.com>2020-08-11 12:43:52 +0800
commit55d08df3c15818e238a44dc93aa92b0befad36fa (patch)
tree4fc57695ac7463b25eaa746315ce56b2805dea31 /README.md
parent161c9310fb1d5bcee98251449effd7797f25ffc3 (diff)
downloadfqterm-55d08df3c15818e238a44dc93aa92b0befad36fa.tar.xz
drop Qt4 support
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index f8cb574..5fd7455 100644
--- a/README.md
+++ b/README.md
@@ -33,21 +33,20 @@ git clone https://github.com/mytbk/fqterm.git
# 假设FQTerm源码目录为fqterm
mkdir build
cd build
-# 用cmake生成Makefile,默认为Qt4版本,Qt5版本请添加-DUSE_QT5=1参数
cmake ../fqterm
make
# 以root身份安装,以下用sudo获取root权限
sudo make install
```
-在 macOS (Sierra) 中编译建议使用 Qt5 分支,利用 HomeBrew 安装依赖。目前支持并不完善。
+在 macOS (Sierra) 中编译,利用 HomeBrew 安装依赖。目前支持并不完善。
```shell
brew install openssl qt5
mkdir build
cd build
CMAKE_PREFIX_PATH=/usr/local/opt/qt5/lib/cmake \
OPENSSL_ROOT_DIR=/usr/local/opt/openssl \
-cmake ../fqterm -DUSE_QT5=1
+cmake ../fqterm
make
make install
```