From de68ad306615e1e75546234892a57e7f05bbbd9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Mayer?= Date: Thu, 23 Sep 2010 07:02:33 +0000 Subject: H. Sivank I try to configure Wireshark with cmake on macosx 10.6. It fails with : set_target_properties called with incorrect number of arguments. Attached a patch to fix this issue. svn path=/trunk/; revision=34201 --- plugins/m2m/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/m2m/CMakeLists.txt') diff --git a/plugins/m2m/CMakeLists.txt b/plugins/m2m/CMakeLists.txt index a067cfde43..967e514ab5 100644 --- a/plugins/m2m/CMakeLists.txt +++ b/plugins/m2m/CMakeLists.txt @@ -59,7 +59,7 @@ add_library(m2m ${LINK_MODE_MODULE} ) set_target_properties(m2m PROPERTIES PREFIX "") set_target_properties(m2m PROPERTIES SOVERSION ${CPACK_PACKAGE_VERSION}) -set_target_properties(m2m PROPERTIES LINK_FLAGS ${WS_LINK_FLAGS}) +set_target_properties(m2m PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}") target_link_libraries(m2m epan) -- cgit v1.2.3