diff options
author | Marcel Hollerbach <marcel-hollerbach@t-online.de> | 2017-01-21 13:41:47 +0100 |
---|---|---|
committer | Marcel Hollerbach <marcel-hollerbach@t-online.de> | 2017-01-23 18:23:40 +0100 |
commit | 308c8c4ef76f185aac577073ad22e827f0b44964 (patch) | |
tree | 540f824f34b9f108d3c5e225344d008ec15f8cbe /cmake | |
parent | e1e7614ea48fb164c25b1dec128f8a3f9ce96e45 (diff) | |
download | efl-308c8c4ef76f185aac577073ad22e827f0b44964.tar.gz |
cmake: This should be public linked no private
otherwise we are linking symbols
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/helpers/EflMacros.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/helpers/EflMacros.cmake b/cmake/helpers/EflMacros.cmake index 7b86e6ecc5..2042c73a4a 100644 --- a/cmake/helpers/EflMacros.cmake +++ b/cmake/helpers/EflMacros.cmake @@ -493,7 +493,7 @@ function(EFL_LIB _target) target_link_libraries(${_target} LINK_PRIVATE ${LIBRARIES}) endif() if(PUBLIC_LIBRARIES) - target_link_libraries(${_target} LINK_PRIVATE ${PUBLIC_LIBRARIES}) + target_link_libraries(${_target} PUBLIC ${PUBLIC_LIBRARIES}) endif() target_include_directories(${_target} PUBLIC |