1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(build): install and use AppImageUpdaterBridge

This commit is contained in:
antony-jr 2019-07-27 17:02:34 +05:30
parent bcab4514e4
commit 837416b903
No known key found for this signature in database
GPG Key ID: 13089CB6F3D41A27

View File

@ -117,8 +117,9 @@ git checkout tags/v1.1.2
mkdir $AUB_BUILD_DIR mkdir $AUB_BUILD_DIR
cd $AUB_BUILD_DIR cd $AUB_BUILD_DIR
cmake .. -DLOGGING_DISABLED=ON cmake .. -DLOGGING_DISABLED=ON
make
make
make install
# copy qtox source # copy qtox source
cp -r "$QTOX_SRC_DIR" "$QTOX_BUILD_DIR" cp -r "$QTOX_SRC_DIR" "$QTOX_BUILD_DIR"
@ -136,8 +137,7 @@ cd _build
# need to build with -DDESKTOP_NOTIFICATIONS=True for snorenotify # need to build with -DDESKTOP_NOTIFICATIONS=True for snorenotify
cmake -DDESKTOP_NOTIFICATIONS=True \ cmake -DDESKTOP_NOTIFICATIONS=True \
-DUPDATE_CHECK=True \ -DUPDATE_CHECK=True \
-DAPPIMAGE_UPDATER_BRIDGE_SRC_DIR="$AUB_SRC_DIR" \ -DAPPIMAGE_UPDATER_BRIDGE=True
-DAPPIMAGE_UPDATER_BRIDGE_BUILD_DIR="$AUB_BUILD_DIR" ../
make make