aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.build.yml b/.build.yml
index 908aa55c..b748263b 100644
--- a/.build.yml
+++ b/.build.yml
@@ -33,6 +33,8 @@ requires:
- libxklavier-dev
- systemd
# - libayatana-common-dev
+# For building libayatana-common:
+ - liblomiri-url-dispatcher-dev
ubuntu:
- clang
@@ -72,7 +74,11 @@ before_scripts:
- git clone --depth 1 https://github.com/AyatanaIndicators/libayatana-common.git libayatana-common-build
- fi
- cd libayatana-common-build
- - cmake . -DCMAKE_INSTALL_PREFIX=/usr
+ - if [ ${DISTRO_NAME} == "debian" ]; then
+ - cmake . -DCMAKE_INSTALL_PREFIX=/usr -DENABLE_LOMIRI_FEATURES=ON
+ - else
+ - cmake . -DCMAKE_INSTALL_PREFIX=/usr
+ - fi
- make
- make install
- cd -