diff options
author | Ivo Stoilov (GitHub) <istoilov@luxoft.com> | 2017-01-23 11:42:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-23 11:42:51 +0200 |
commit | 8606829ce09211d776433d04cb27ef2623165e5e (patch) | |
tree | 56975173e0f5096dcbf5c6f115d426076c31280d /src/components/interfaces | |
parent | 1ffedc9c30f07102e0dce4ec570bb4fc257d1589 (diff) | |
parent | a5d7c78b6b26dbb3a959d93b5c4b7135d5348dd3 (diff) | |
download | sdl_core-8606829ce09211d776433d04cb27ef2623165e5e.tar.gz |
Merge pull request #1150 from istoilovgithub/fix/component_dependencies
Fix component dependencies
Diffstat (limited to 'src/components/interfaces')
-rw-r--r-- | src/components/interfaces/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/interfaces/CMakeLists.txt b/src/components/interfaces/CMakeLists.txt index 2c84e48235..1ea481f11a 100644 --- a/src/components/interfaces/CMakeLists.txt +++ b/src/components/interfaces/CMakeLists.txt @@ -70,4 +70,7 @@ if(HMI_DBUS_API) add_library(HMI_API ${CMAKE_CURRENT_BINARY_DIR}/HMI_API_schema.cc) endif() -add_dependencies(HMI_API Utils) +target_link_libraries(v4_protocol_v1_2_no_extra Utils) +target_link_libraries(MOBILE_API Utils) +target_link_libraries(HMI_API Utils) + |