aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2010-02-24 22:32:10 +0000
committerJörg Mayer <jmayer@loplof.de>2010-02-24 22:32:10 +0000
commit67072286bf8bd0aa2dee81953cc2ce08ea8d3dbd (patch)
tree28375b9f6b1105b56c62ddc56fd5980490d8d293 /plugins/giop
parentbacd4032369303558cefabd00431128d93d4a462 (diff)
- Remove the lib prefix for plugin names.
- Remove a (resolved) comment. - Add a commented out line how to add version infos to the plugin's file name. svn path=/trunk/; revision=31995
Diffstat (limited to 'plugins/giop')
-rw-r--r--plugins/giop/CMakeLists.txt12
1 files changed, 8 insertions, 4 deletions
diff --git a/plugins/giop/CMakeLists.txt b/plugins/giop/CMakeLists.txt
index 93c3fcfaa6..cc383af6f9 100644
--- a/plugins/giop/CMakeLists.txt
+++ b/plugins/giop/CMakeLists.txt
@@ -53,13 +53,11 @@ endif()
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
-# todo
-# Do I need any of this or is this handled by type MODULE?
-# asn1_la_LDFLAGS = -module -avoid-version
-
add_library(cosnaming ${LINK_MODE_MODULE}
${COSNAMING_SRC}
)
+set_target_properties(cosnaming PROPERTIES PREFIX "")
+#set_target_properties(cosnaming PROPERTIES SOVERSION ${CPACK_PACKAGE_VERSION})
target_link_libraries(cosnaming epan)
@@ -72,6 +70,8 @@ install(TARGETS cosnaming
add_library(coseventcomm ${LINK_MODE_MODULE}
${COSEVENTCOMM_SRC}
)
+set_target_properties(coseventcomm PROPERTIES PREFIX "")
+#set_target_properties(coseventcomm PROPERTIES SOVERSION ${CPACK_PACKAGE_VERSION})
target_link_libraries(coseventcomm epan)
@@ -84,6 +84,8 @@ install(TARGETS coseventcomm
add_library(tango ${LINK_MODE_MODULE}
${TANGO_SRC}
)
+set_target_properties(tango PROPERTIES PREFIX "")
+#set_target_properties(tango PROPERTIES SOVERSION ${CPACK_PACKAGE_VERSION})
target_link_libraries(tango epan)
@@ -96,6 +98,8 @@ install(TARGETS tango
add_library(parlay ${LINK_MODE_MODULE}
${PARLAY_SRC}
)
+set_target_properties(parlay PROPERTIES PREFIX "")
+#set_target_properties(parlay PROPERTIES SOVERSION ${CPACK_PACKAGE_VERSION})
target_link_libraries(parlay epan)