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 --- codecs/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'codecs') diff --git a/codecs/CMakeLists.txt b/codecs/CMakeLists.txt index fc0c37e8d7..92fd26a9b2 100644 --- a/codecs/CMakeLists.txt +++ b/codecs/CMakeLists.txt @@ -29,4 +29,4 @@ set(CODECS_FILES add_library(codecs STATIC ${CODECS_FILES} ) -set_target_properties(codecs PROPERTIES LINK_FLAGS ${WS_LINK_FLAGS}) +set_target_properties(codecs PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}") -- cgit v1.2.1