From bea24cfdad15fd1842ee9cc2db56b97d74b0fafe Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Thu, 9 Oct 2014 16:41:37 -0700 Subject: CMake: Bundle our plugins. plugins/*/CMakeLists.txt has a lot of repitition. We might want to create a module or include file to simplify things. Change-Id: Iadd453c286a4127beacd80edf6dc200aa9148852 Reviewed-on: https://code.wireshark.org/review/4582 Reviewed-by: Gerald Combs --- plugins/m2m/CMakeLists.txt | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'plugins/m2m/CMakeLists.txt') diff --git a/plugins/m2m/CMakeLists.txt b/plugins/m2m/CMakeLists.txt index 4dda097b15..6a779b909b 100644 --- a/plugins/m2m/CMakeLists.txt +++ b/plugins/m2m/CMakeLists.txt @@ -56,9 +56,18 @@ add_library(m2m ${LINK_MODE_MODULE} ${PLUGIN_FILES} plugin.rc ) -set_target_properties(m2m PROPERTIES PREFIX "") -set_target_properties(m2m PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}") -set_target_properties(m2m PROPERTIES FOLDER "Plugins") + +set_target_properties(m2m PROPERTIES + PREFIX "" + LINK_FLAGS "${WS_LINK_FLAGS}" + FOLDER "Plugins" +) + +if(ENABLE_APPLICATION_BUNDLE) + set_target_properties(m2m PROPERTIES + LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/run/Wireshark.app/Contents/PlugIns/wireshark + ) +endif() target_link_libraries(m2m epan) -- cgit v1.2.3