* <All Tools>/CMakeLists.txt:
- Change: Added versioning to library.
This commit is contained in:
parent
f5cedcdece
commit
eb86ef8bc9
|
@ -160,5 +160,6 @@
|
|||
|
||||
add_library ( hurricane ${cpps} )
|
||||
target_link_libraries ( hurricane ${Boost_LIBRARIES} )
|
||||
set_target_properties ( hurricane PROPERTIES VERSION 1.0 SOVERSION 1 )
|
||||
install ( TARGETS hurricane DESTINATION lib${LIB_SUFFIX} )
|
||||
install ( FILES ${includes} DESTINATION include/coriolis2/hurricane )
|
||||
|
|
|
@ -111,6 +111,7 @@
|
|||
qt4_add_resources ( RCC_SRCS CellViewer.qrc )
|
||||
|
||||
add_library ( viewer ${cpps} ${MOC_SRCS} ${RCC_SRCS} ${sources2} ${pycpps} )
|
||||
set_target_properties ( viewer PROPERTIES VERSION 1.0 SOVERSION 1 )
|
||||
target_link_libraries ( viewer hurricane isobar ${CONFIGURATION_LIBRARY} ${Boost_LIBRARIES} ${QT_LIBRARIES} )
|
||||
add_library ( pyViewer MODULE ${pycpps} )
|
||||
target_link_libraries ( pyViewer viewer )
|
||||
|
|
Loading…
Reference in New Issue