Specify Clouseau library to link the extension

During compilation of the objects introspection extension, the
clouseau_debug library is needed.
In Ubuntu machines, it seems that this MUST be specified in the
CMakeLists.txt. Without it, dlopen the extension fails on trying to find
a function present in the Clouseau library.

Thanks to Woohyun for using Ubuntu :-)

@fix
This commit is contained in:
Daniel Zaoui 2017-08-21 10:28:09 +03:00
parent dc7ee20d22
commit 26c85dda2d
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ target_link_libraries(clouseau_objects_introspection
${EINA_LIBRARIES}
${EET_LIBRARIES}
${EOLIAN_LIBRARIES}
clouseau_debug
)
INSTALL(TARGETS clouseau_objects_introspection LIBRARY DESTINATION lib)