aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/m2m
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-06 18:58:09 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-06 18:58:09 +0000
commit2ee5e7f7e632f971108d570a719dbb1655ebf228 (patch)
tree974bdce5387270181baf6814bd3ba0c9946f41c0 /plugins/m2m
parent8e65fe9fbae472c7755a3159ad5936f5247de50e (diff)
Build plugins with cmake on OSX.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30373 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins/m2m')
-rw-r--r--plugins/m2m/CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/m2m/CMakeLists.txt b/plugins/m2m/CMakeLists.txt
index 6d5047c1a2..57239210e0 100644
--- a/plugins/m2m/CMakeLists.txt
+++ b/plugins/m2m/CMakeLists.txt
@@ -25,9 +25,14 @@ set(DISSECTOR_SRC
packet-m2m.c
)
+set(DISSECTOR_SUPPORT_SRC
+ wimax_tlv.c
+)
+
set(PLUGIN_FILES
plugin.c
${DISSECTOR_SRC}
+ ${DISSECTOR_SUPPORT_SRC}
)
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
@@ -67,6 +72,8 @@ add_library(m2m MODULE
${PLUGIN_FILES}
)
+target_link_libraries(m2m epan)
+
install(TARGETS m2m
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION}
RUNTIME DESTINATION ${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION}