diff options
author | Robert Tari <robert@tari.in> | 2021-12-06 11:02:46 +0100 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-12-10 10:51:54 +0100 |
commit | 8e481a715fd221c9fd14413eaacc515c95886c43 (patch) | |
tree | 6dd73028e6db9161285e734038d5221db32c7377 /.build.yml | |
parent | 3bf3265996df1b4038fac0b5ff92bf58984c7777 (diff) | |
download | ayatana-indicator-session-8e481a715fd221c9fd14413eaacc515c95886c43.tar.gz ayatana-indicator-session-8e481a715fd221c9fd14413eaacc515c95886c43.tar.bz2 ayatana-indicator-session-8e481a715fd221c9fd14413eaacc515c95886c43.zip |
.build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURES
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -97,7 +97,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 - |