On Mon, 15 May 2017 13:32:15 -0700
Pawel Veselov <pawel.vese...@gmail.com> wrote:

> Hello.
> 
> I'm trying to make CMake add to the linker RPATH automatically.
> There is a library that is installed in a non-default location.
> I'm discovering the library using PkgConfig (custom
> CMAKE_APPBUNDLE_PATH) and add the library build options to the
> LINK_FLAGS (using set_property).

Instead of setting the LINK_FLAGS to your external library try using
target_link_libraries() with the full path name to the library.

For example this will work as expected, cmake with set an RPATH
to "/path/to":

  set(LIB "/path/to/libsomething.so")
  target_link_libraries(test1 ${LIB})

HTH,
--
Patrick.
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake

Reply via email to