6 lines
127 B
CMake
6 lines
127 B
CMake
|
add_library(myotherlib SHARED myotherlib.cpp)
|
||
|
set_target_properties( myotherlib PROPERTIES
|
||
|
VERSION 1.2.3
|
||
|
SOVERSION 1
|
||
|
)
|