diff options
author | Alexandr Akulich <akulichalexander@gmail.com> | 2016-01-15 18:54:09 +0500 |
---|---|---|
committer | Alexandr Akulich <akulichalexander@gmail.com> | 2016-01-15 19:00:15 +0500 |
commit | 7389dc990c67d4269f3a79c924c054e87f2e4ac5 (patch) | |
tree | da7d9c7caf4754cc9a677bab32aaf441757d5c2b | |
parent | 1e1f53e9d91684918c34ec50392f86287e001a1e (diff) |
CMakeLists: Added missing service dependence.
telepathy-qt-service depends on generated stable and future types and consts.
-rw-r--r-- | TelepathyQt/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/TelepathyQt/CMakeLists.txt b/TelepathyQt/CMakeLists.txt index 58668cd9..1b32d32b 100644 --- a/TelepathyQt/CMakeLists.txt +++ b/TelepathyQt/CMakeLists.txt @@ -953,6 +953,7 @@ if(ENABLE_SERVICE_SUPPORT) #endif (ENABLE_COMPILER_COVERAGE) # lets build a static only library until we have a stable API/ABI add_library(telepathy-qt${QT_VERSION_MAJOR}-service STATIC ${telepathy_qt_service_SRCS}) + add_dependencies(telepathy-qt${QT_VERSION_MAJOR}-service stable-typesgen future-typesgen) # generate service moc files foreach(moc_src ${telepathy_qt_service_MOC_SRCS}) |