* <All Tools>/CMakeLists.txt:

- Change: Added versioning to library.
This commit is contained in:
Jean-Paul Chaput 2011-02-02 22:25:07 +00:00
parent f5cedcdece
commit eb86ef8bc9
2 changed files with 2 additions and 0 deletions

View File

@ -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 )

View File

@ -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 )