diff options
| author | François Andriot <francois.andriot@free.fr> | 2014-10-08 21:25:38 +0200 | 
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2014-10-08 21:25:38 +0200 | 
| commit | aae8990d33bbfee205c75dc7e48e1c64f2beeff0 (patch) | |
| tree | 41db5d1e9ccf4e6dfc11b379794f6e816550914c | |
| parent | 3adf509ac83ac9d807de0bbed0770d0234382c84 (diff) | |
| download | tdelibs-aae8990d33bbfee205c75dc7e48e1c64f2beeff0.tar.gz tdelibs-aae8990d33bbfee205c75dc7e48e1c64f2beeff0.zip  | |
Add a cmake detection for Xext library
Remove hardcoded Xext flags in tderandr and tdestyles/keramik
Add missing link flag in tdeui
| -rw-r--r-- | CMakeLists.txt | 6 | ||||
| -rw-r--r-- | tderandr/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | tdestyles/keramik/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | tdeui/CMakeLists.txt | 2 | 
4 files changed, 9 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 45f161b0e..11d3c4bfe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -679,6 +679,12 @@ if( WITH_XCOMPOSITE )    else( WITH_XCOMPOSITE )      tde_message_fatal( "xcomposite support was requested, but xcomposite was not found on your system" )    endif( XCOMPOSITE_FOUND ) + +  # xext (tderandr, tdestyles/keramik, tdeui) +  pkg_search_module( XEXT xext ) +  if( NOT XEXT_FOUND ) +    tde_message_fatal( "xext is required for xcomposite support, but was not found on your system" ) +  endif( )  endif( WITH_XCOMPOSITE ) diff --git a/tderandr/CMakeLists.txt b/tderandr/CMakeLists.txt index efcd8519d..e52da4c17 100644 --- a/tderandr/CMakeLists.txt +++ b/tderandr/CMakeLists.txt @@ -43,6 +43,6 @@ set( ${target}_SRCS  tde_add_library( ${target} SHARED AUTOMOC    SOURCES ${${target}_SRCS}    VERSION 0.0.95 -  LINK tdeui-shared ${XRANDR_LIBRARIES} Xext +  LINK tdeui-shared ${XRANDR_LIBRARIES} ${XEXT_LIBRARIES}    DESTINATION ${LIB_INSTALL_DIR}  ) diff --git a/tdestyles/keramik/CMakeLists.txt b/tdestyles/keramik/CMakeLists.txt index 8ee7c9730..ae536516e 100644 --- a/tdestyles/keramik/CMakeLists.txt +++ b/tdestyles/keramik/CMakeLists.txt @@ -65,6 +65,6 @@ set_source_files_properties( pixmaploader.cpp PROPERTIES OBJECT_DEPENDS ${CMAKE_  tde_add_kpart( ${target} AUTOMOC    SOURCES ${${target}_SRCS} -  LINK tdefx-shared Xext +  LINK tdefx-shared ${XEXT_LIBRARIES}    DESTINATION ${PLUGIN_INSTALL_DIR}/plugins/styles  ) diff --git a/tdeui/CMakeLists.txt b/tdeui/CMakeLists.txt index d30bee930..581687833 100644 --- a/tdeui/CMakeLists.txt +++ b/tdeui/CMakeLists.txt @@ -148,7 +148,7 @@ set( ${target}_SRCS  tde_add_library( ${target} SHARED AUTOMOC    SOURCES ${${target}_SRCS}    VERSION 14.0.0 -  LINK tdecore-shared ${FREETYPE_LIBRARIES} ${FONTCONFIG_LIBRARIES} +  LINK tdecore-shared ${FREETYPE_LIBRARIES} ${FONTCONFIG_LIBRARIES} ${XEXT_LIBRARIES}    DEPENDENCIES dcopidl    DESTINATION ${LIB_INSTALL_DIR}  )  | 
