On 4/23/07, Andreas Schneider <[EMAIL PROTECTED]> wrote:
Mathieu Malaterre wrote:
> Hello,
>
> I cannot figure out how to install a library so that the installed
> version use the install_rpath.
>
> # By default rpath works in built tree:
> ADD_LIBRARY(foo SHARED foo.c)
> ADD_LIBRARY(bla SHARED
Mathieu Malaterre wrote:
> Hello,
>
> I cannot figure out how to install a library so that the installed
> version use the install_rpath.
>
> # By default rpath works in built tree:
> ADD_LIBRARY(foo SHARED foo.c)
> ADD_LIBRARY(bla SHARED bla.c)
> TARGET_LINK_LIBRARIES(bla foo)
> INSTALL(
> TAR
On 2007-04-23 16:46+0200 Mathieu Malaterre wrote:
Hello,
I cannot figure out how to install a library so that the installed
version use the install_rpath.
# By default rpath works in built tree:
ADD_LIBRARY(foo SHARED foo.c)
ADD_LIBRARY(bla SHARED bla.c)
TARGET_LINK_LIBRARIES(bla foo)
INSTALL(
Hello,
I cannot figure out how to install a library so that the installed
version use the install_rpath.
# By default rpath works in built tree:
ADD_LIBRARY(foo SHARED foo.c)
ADD_LIBRARY(bla SHARED bla.c)
TARGET_LINK_LIBRARIES(bla foo)
INSTALL(
TARGETS bla foo
LIBRARY DESTINATION lib
)
SET_T