[Discuss-gnuradio] Cmake question

2015-07-06 Thread Volker Schroer
I need to modify the SONAME of some gnuradio libs. In the gnuradio/volk/CMakeList.txt there is an entry set_target_properties(volk PROPERTIES SOVERSION ${LIBVER}) that sets the SONAME. But how is this done for other libs like gnuradio-runtime or gnuradio-pmt. I did not identfy the statements

Re: [Discuss-gnuradio] Cmake question

2015-07-06 Thread Michael Dickens
Hi Volker - Actually, the command you quote just sets the -version- of the library, not the name. The name is set by default as the target name, though one can change the name to something else via a similar set_target_properties command. Hope this helps! - MLD On Mon, Jul 6, 2015, at 07:01 AM,

Re: [Discuss-gnuradio] Cmake question

2015-07-06 Thread Volker Schroer
Michael, thank you for the quick response. My question was a bit misleading. I don't want to modify the library name but the version number. In the volk directory I found the correspondent entry set_target_properties(volk PROPERTIES SOVERSION ${LIBVER}) in the

Re: [Discuss-gnuradio] Cmake question

2015-07-06 Thread West, Nathan
On Mon, Jul 6, 2015 at 11:41 AM, Volker Schroer dl1...@gmx.de wrote: Michael, thank you for the quick response. My question was a bit misleading. I don't want to modify the library name but the version number. In the volk directory I found the correspondent entry set_target_properties(volk

Re: [Discuss-gnuradio] Cmake question

2015-07-06 Thread Volker Schroer
Now I got it. In GrMiscutils.cmake the SOVERSION is set. Thanks to all. -- Volker Am 06.07.2015 um 17:41 schrieb Volker Schroer: Michael, thank you for the quick response. My question was a bit misleading. I don't want to modify the library name but the version number. In the volk