|
Lines 95-100
OPTION( WITH_SUDO_TDESU_BACKEND "Use sudo as backend for tdesu (default is su)"
Link Here
|
| 95 |
OPTION( WITH_OLD_XDG_STD "Use the pre R14.0.0 XDG standard where both TDE and KDE are recognized in desktop files" OFF ) |
95 |
OPTION( WITH_OLD_XDG_STD "Use the pre R14.0.0 XDG standard where both TDE and KDE are recognized in desktop files" OFF ) |
| 96 |
OPTION( WITH_LZMA "Enable support for LZMA/XZ" ${WITH_ALL_OPTIONS} ) |
96 |
OPTION( WITH_LZMA "Enable support for LZMA/XZ" ${WITH_ALL_OPTIONS} ) |
| 97 |
OPTION( WITH_LIBBFD "Enable pretty backtraces with libbfd from GNU binutils" OFF ) |
97 |
OPTION( WITH_LIBBFD "Enable pretty backtraces with libbfd from GNU binutils" OFF ) |
|
|
98 |
OPTION( WITH_XRANDR "Build the tderandr library" ON ) |
| 98 |
OPTION( WITH_KDE4_MENU_SUFFIX "Add [KDE4] tag to KDE4 menu items" OFF ) |
99 |
OPTION( WITH_KDE4_MENU_SUFFIX "Add [KDE4] tag to KDE4 menu items" OFF ) |
| 99 |
|
100 |
|
| 100 |
OPTION( WITH_ASPELL "Enable aspell support" ${WITH_ALL_OPTIONS} ) |
101 |
OPTION( WITH_ASPELL "Enable aspell support" ${WITH_ALL_OPTIONS} ) |
|
Lines 599-608
endif( NOT FONTCONFIG_FOUND )
Link Here
|
| 599 |
|
600 |
|
| 600 |
##### check for Xrandr ########################## |
601 |
##### check for Xrandr ########################## |
| 601 |
|
602 |
|
| 602 |
pkg_search_module( XRANDR xrandr>=1.2 ) |
603 |
if( WITH_XRANDR ) |
| 603 |
if( XRANDR_FOUND ) |
604 |
pkg_search_module( XRANDR xrandr>=1.2 ) |
| 604 |
set( XRANDR_SUPPORT 1 ) |
605 |
if( XRANDR_FOUND ) |
| 605 |
endif( XRANDR_FOUND ) |
606 |
set( XRANDR_SUPPORT 1 ) |
|
|
607 |
else( XRANDR_FOUND ) |
| 608 |
message(FATAL_ERROR "\nxrandr support was required, but not found on your system" ) |
| 609 |
endif( XRANDR_FOUND ) |
| 610 |
endif( WITH_XRANDR ) |
| 606 |
|
611 |
|
| 607 |
|
612 |
|
| 608 |
##### check for xrender ######################### |
613 |
##### check for xrender ######################### |
|
Lines 1025-1033
add_subdirectory( arts )
Link Here
|
| 1025 |
add_subdirectory( interfaces ) |
1030 |
add_subdirectory( interfaces ) |
| 1026 |
add_subdirectory( kate ) |
1031 |
add_subdirectory( kate ) |
| 1027 |
add_subdirectory( tdecert ) |
1032 |
add_subdirectory( tdecert ) |
| 1028 |
if( XRANDR_FOUND ) |
1033 |
tde_conditional_add_subdirectory( WITH_XRANDR tderandr ) |
| 1029 |
add_subdirectory( tderandr ) |
|
|
| 1030 |
endif( XRANDR_FOUND ) |
| 1031 |
add_subdirectory( tdehtml ) |
1034 |
add_subdirectory( tdehtml ) |
| 1032 |
add_subdirectory( tdecmshell ) |
1035 |
add_subdirectory( tdecmshell ) |
| 1033 |
add_subdirectory( tdeconf_update ) |
1036 |
add_subdirectory( tdeconf_update ) |
| 1034 |
- |
|
|