diff options
author | Benjamin Reed <ranger@befunk.com> | 2006-01-27 22:24:04 +0000 |
---|---|---|
committer | Benjamin Reed <ranger@befunk.com> | 2006-01-27 22:24:04 +0000 |
commit | 7f84e10ddbcc7d67e553e7df49a7b7db5727ba71 (patch) | |
tree | e021b7d1112002f914d74ce5426c524e62fa092e | |
parent | 65afee80faf2956ee92a6d0584ad3bf96514b1d3 (diff) | |
download | extra-cmake-modules-7f84e10ddbcc7d67e553e7df49a7b7db5727ba71.tar.gz extra-cmake-modules-7f84e10ddbcc7d67e553e7df49a7b7db5727ba71.tar.bz2 |
mac os x fixes for the cmake build
svn path=/trunk/KDE/kdelibs/; revision=503025
-rw-r--r-- | modules/FindKDE4.cmake | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/modules/FindKDE4.cmake b/modules/FindKDE4.cmake index 012c9a10..022fe454 100644 --- a/modules/FindKDE4.cmake +++ b/modules/FindKDE4.cmake @@ -29,7 +29,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.2) IF(UNIX) IF(APPLE) - MESSAGE(FATAL_ERROR "Mac OSX not yet supported by FindKDE4.cmake and KDE4Macros.cmake, please edit them as required") + #MESSAGE(FATAL_ERROR "Mac OSX not yet supported by FindKDE4.cmake and KDE4Macros.cmake, please edit them as required") ELSE(APPLE) FIND_PACKAGE(X11 REQUIRED) ENDIF(APPLE) @@ -67,6 +67,26 @@ IF(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") SET (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-strings -O2 -Wformat-security -Wmissing-format-attribute -fno-exceptions -fno-check-new -fno-common") ENDIF(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") +# This will need to be modified later to support either Qt/X11 or Qt/Mac builds +IF(APPLE) + # we need to set MACOSX_DEPLOYMENT_TARGET to (I believe) at least 10.2 or maybe 10.3 to allow + # -undefined dynamic_lookup; in the future we should do this programmatically + # hmm... why doesn't this work? + SET(ENV{MACOSX_DEPLOYMENT_TARGET} 10.3) + + # "-undefined dynamic_lookup" means we don't care about missing symbols at link-time by default + # this is bad, but unavoidable until there is the equivalent of libtool -no-undefined implemented + # or perhaps it already is, and I just don't know where to look ;) + + SET(CMAKE_SHARED_LINKER_FLAGS "-single_module -multiply_defined suppress") + SET(CMAKE_MODULE_LINKER_FLAGS "-multiply_defined suppress") + #SET(CMAKE_SHARED_LINKER_FLAGS "-single_module -undefined dynamic_lookup -multiply_defined suppress") + #SET(CMAKE_MODULE_LINKER_FLAGS "-undefined dynamic_lookup -multiply_defined suppress") + + SET (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-common -Os") + SET (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Os") +ENDIF(APPLE) + #SET(CMAKE_SHARED_LINKER_FLAGS "-avoid-version -module -Wl,--no-undefined -Wl,--allow-shlib-undefined") |