debrouxl / tilibs

TILP (formerly GtkTiLink) can transfer data between Texas Instruments graphing calculators and a computer. It works with all link cables (parallel, serial, Black/Gray/Silver/Direct Link) and it supports the TI-Z80 series (73..86), the TI-eZ80 series (83PCE, 84+CE), the TI-68k series (89, 92, 92+, V200, 89T) and the Nspire series (Nspire Clickpad / Touchpad / CX, both CAS and non-CAS)
http://lpg.ticalc.org/prj_tilp
63 stars 23 forks source link

cmake: set soversion for all shared libraries #59

Closed davide125 closed 2 years ago

davide125 commented 2 years ago

Currently the cmake build system doesn't define soversion, which leads to all libraries being installed as just lib*.so. Set soversion to the same value defined in the autotools build system, so the shared libraries can be installed with the appropriate name (e.g. libticonv.so.9.4.0 instead of libticonv.so).

debrouxl commented 2 years ago

Thanks for this PR :) AFAICT, you made a typo for the libticalcs soversion: it should be 13.3.0.

davide125 commented 2 years ago

Thanks, fixed.

debrouxl commented 2 years ago

Thanks :)