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 -

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.so -

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 -

Re: [CMake] Version in name of shared library

2012-09-06 Thread Eric Noulard
2012/9/6 Anton Sibilev anton.sibi...@gmail.com: 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

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 please help,

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 create lib with name

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 as result I got