aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2009-11-17 11:58:36 +0000
committerJörg Mayer <jmayer@loplof.de>2009-11-17 11:58:36 +0000
commitd2cc318f4fc184a3de6038d1492896ec6bfb5f79 (patch)
treec635034c45104971ecf947a800fa3815dc2671a2 /plugins/giop
parent9c06ca976e94c1a89fbc28fa3930966b395ff07c (diff)
Beginnings of enabling static builds. Still to do:
* Add -static * Registration may need different handling * Add plugins * Build error in wslua svn path=/trunk/; revision=30987
Diffstat (limited to 'plugins/giop')
-rw-r--r--plugins/giop/CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/giop/CMakeLists.txt b/plugins/giop/CMakeLists.txt
index aa2776ebd4..93c3fcfaa6 100644
--- a/plugins/giop/CMakeLists.txt
+++ b/plugins/giop/CMakeLists.txt
@@ -57,7 +57,7 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR})
# Do I need any of this or is this handled by type MODULE?
# asn1_la_LDFLAGS = -module -avoid-version
-add_library(cosnaming MODULE
+add_library(cosnaming ${LINK_MODE_MODULE}
${COSNAMING_SRC}
)
@@ -69,7 +69,7 @@ install(TARGETS cosnaming
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION}
)
-add_library(coseventcomm MODULE
+add_library(coseventcomm ${LINK_MODE_MODULE}
${COSEVENTCOMM_SRC}
)
@@ -81,7 +81,7 @@ install(TARGETS coseventcomm
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION}
)
-add_library(tango MODULE
+add_library(tango ${LINK_MODE_MODULE}
${TANGO_SRC}
)
@@ -93,7 +93,7 @@ install(TARGETS tango
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION}
)
-add_library(parlay MODULE
+add_library(parlay ${LINK_MODE_MODULE}
${PARLAY_SRC}
)