On 09/06/2012 10:09 AM, Michael Wild wrote:
> On 09/06/2012 10:05 AM, Benjamin Eikel wrote:
>> Am Donnerstag, 6. September 2012 um 10:01:36 schrieb Michael Wild:
>>> On 09/06/2012 09:43 AM, Anton Sibilev wrote:
Hi all!
I'm making shared library with add_library(xxx SHARED xxx.c) and
On 09/06/2012 10:05 AM, Benjamin Eikel wrote:
> Am Donnerstag, 6. September 2012 um 10:01:36 schrieb Michael Wild:
>> On 09/06/2012 09:43 AM, Anton Sibilev wrote:
>>> Hi all!
>>>
>>> I'm making shared library with add_library(xxx SHARED xxx.c) and as
>>> result I got 'libxxx.so'.
>>> I want to crea
Am Donnerstag, 6. September 2012 um 10:01:36 schrieb Michael Wild:
> On 09/06/2012 09:43 AM, Anton Sibilev wrote:
> > Hi all!
> >
> > I'm making shared library with add_library(xxx SHARED xxx.c) and as
> > result I got 'libxxx.so'.
> > I want to create lib with name like 'libxxx.so.1', can you ple
2012/9/6 Anton Sibilev :
> Hi all!
>
> I'm making shared library with add_library(xxx SHARED xxx.c) and as result I
> got 'libxxx.so'.
> I want to create lib with name like 'libxxx.so.1', can you please help, how
> to make this?
set_target_properties(xxx PROPERTIES VERSION 1.0.0 SOVERSION 1)
see:
Am 06.09.2012 09:43, schrieb Anton Sibilev:
Hi all!
I'm making shared library with add_library(xxx SHARED xxx.c) and as
result I got 'libxxx.so'.
I want to create lib with name like 'libxxx.so.1', can you please
help, how to make this?
Point is not to create link or copy libxxx.so -> libxxx.
On 09/06/2012 09:56 AM, Michael Stürmer wrote:
> Am 06.09.2012 09:43, schrieb Anton Sibilev:
>> Hi all!
>>
>> I'm making shared library with add_library(xxx SHARED xxx.c) and as
>> result I got 'libxxx.so'.
>> I want to create lib with name like 'libxxx.so.1', can you please help,
>> how to make th
On 09/06/2012 09:43 AM, Anton Sibilev wrote:
> Hi all!
>
> I'm making shared library with add_library(xxx SHARED xxx.c) and as
> result I got 'libxxx.so'.
> I want to create lib with name like 'libxxx.so.1', can you please help,
> how to make this?
>
> Point is not to create link or copy libxxx.s
Am 06.09.2012 09:43, schrieb Anton Sibilev:
Hi all!
I'm making shared library with add_library(xxx SHARED xxx.c) and as
result I got 'libxxx.so'.
I want to create lib with name like 'libxxx.so.1', can you please help,
how to make this?
Point is not to create link or copy libxxx.so -> libxxx.so.
Hi all!
I'm making shared library with add_library(xxx SHARED xxx.c) and as result
I got 'libxxx.so'.
I want to create lib with name like 'libxxx.so.1', can you please help, how
to make this?
Point is not to create link or copy libxxx.so -> libxxx.so.1, but to create
it initially.
Thanks!
--
Po