aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2021-12-06 11:25:31 +0100
committerRobert Tari <robert@tari.in>2021-12-10 11:01:14 +0100
commitd1846af034194ae6e4c414f354b2fe7c9da0451c (patch)
treefd9f0b10dc1528b383424fe4644bc1babd698b2a /.build.yml
parent557c6222cbe1c14c903bf6145a721351d17a8818 (diff)
downloadayatana-indicator-messages-d1846af034194ae6e4c414f354b2fe7c9da0451c.tar.gz
ayatana-indicator-messages-d1846af034194ae6e4c414f354b2fe7c9da0451c.tar.bz2
ayatana-indicator-messages-d1846af034194ae6e4c414f354b2fe7c9da0451c.zip
.build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURES
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.build.yml b/.build.yml
index faac85a..9ed2e6b 100644
--- a/.build.yml
+++ b/.build.yml
@@ -81,7 +81,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 ..