Re: [CMake] Version in name of shared library

2012-09-06 Thread Michael Wild
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

Re: [CMake] Version in name of shared library

2012-09-06 Thread Michael Wild
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

Re: [CMake] Version in name of shared library

2012-09-06 Thread Benjamin Eikel
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

Re: [CMake] Version in name of shared library

2012-09-06 Thread Eric Noulard
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:

Re: [CMake] Version in name of shared library

2012-09-06 Thread Michael Stürmer
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.

Re: [CMake] Version in name of shared library

2012-09-06 Thread Michael Wild
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

Re: [CMake] Version in name of shared library

2012-09-06 Thread 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 please help, > how to make this? > > Point is not to create link or copy libxxx.s

Re: [CMake] Version in name of shared library

2012-09-06 Thread Michael Stürmer
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.

[CMake] Version in name of shared library

2012-09-06 Thread 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.1, but to create it initially. Thanks! -- Po