From: José Fonseca Date: Sat, 23 Apr 2011 10:26:46 +0000 (+0100) Subject: Fix MacOSX build. X-Git-Tag: 2.0_alpha^2~1013 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ec57590e431362aafe2959a57ce906127561893;p=tools%2Fapitrace.git Fix MacOSX build. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 0c009f4..9dcb14f 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -215,10 +215,16 @@ else () set_target_properties (glxtrace PROPERTIES # avoid the default "lib" prefix PREFIX "" - # prevent symbol relocations internal to our wrapper library to be overwritten by the application - LINK_FLAGS "-Wl,-Bsymbolic -Wl,-Bsymbolic-functions" ) + # Prevent symbol relocations internal to our wrapper library to be + # overwritten by the application. + if (NOT APPLE) + set_target_properties (glxtrace PROPERTIES + LINK_FLAGS "-Wl,-Bsymbolic -Wl,-Bsymbolic-functions" + ) + endif (NOT APPLE) + target_link_libraries (glxtrace dl) endif ()