diff options
author | Robert Tari <robert@tari.in> | 2021-11-03 20:46:46 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-11-08 12:47:19 +0100 |
commit | f4410e0dcde4b9e177dbe4620edd99a11abed963 (patch) | |
tree | 5479342c15c56f45be35b3db5f952f1ffbf3e816 | |
parent | 99e774d52a1095df0415b0906a9622f3ff9e9229 (diff) | |
download | ayatana-indicator-sound-f4410e0dcde4b9e177dbe4620edd99a11abed963.tar.gz ayatana-indicator-sound-f4410e0dcde4b9e177dbe4620edd99a11abed963.tar.bz2 ayatana-indicator-sound-f4410e0dcde4b9e177dbe4620edd99a11abed963.zip |
Rename UNITY_API*
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/gmenuharness/CMakeLists.txt | 2 | ||||
-rw-r--r-- | tests/CMakeLists.txt | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 67aa92d..3038762 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,7 +62,7 @@ pkg_check_modules( ) include_directories(${SOUNDSERVICE_INCLUDE_DIRS}) -pkg_check_modules(UNITY_API liblomiri-api>=0.1.1) +pkg_check_modules(LOMIRI_API liblomiri-api>=0.1.1) include_directories(${TEST_INCLUDE_DIRS}) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f886f81..6706222 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -313,7 +313,7 @@ install( RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_LIBEXECDIR}/ayatana-indicator-sound/ ) -if(UNITY_API_FOUND) +if(LOMIRI_API_FOUND) add_subdirectory(gmenuharness) endif() diff --git a/src/gmenuharness/CMakeLists.txt b/src/gmenuharness/CMakeLists.txt index 761949b..71d060d 100644 --- a/src/gmenuharness/CMakeLists.txt +++ b/src/gmenuharness/CMakeLists.txt @@ -1,4 +1,4 @@ -include_directories(${UNITY_API_INCLUDE_DIRS}) +include_directories(${LOMIRI_API_INCLUDE_DIRS}) include_directories("${CMAKE_SOURCE_DIR}/include") diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index b1142f9..10c3cf5 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -325,7 +325,7 @@ add_test(indicator-test indicator-test ) -if(UNITY_API_FOUND) +if(LOMIRI_API_FOUND) add_subdirectory(integration) endif() add_subdirectory(dbus-types) |