diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ce186bda..a1a64292c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -81,6 +81,7 @@ OPTION( WITH_ELFICON "Enable ELF embedded icon support" ${WITH_ALL_OPTIONS} ) OPTION( WITH_PCRE "Enable pcre regex support for kjs" ON ) OPTION( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} ) OPTION( WITH_INOTIFY "Enable inotify support for kio" ON ) +OPTION( WITH_GAMIN "Enable FAM/GAMIN support" ${WITH_ALL_OPTIONS} ) OPTION( WITH_ASPELL "Enable aspell support" ${WITH_ALL_OPTIONS} ) OPTION( WITH_HSPELL "Enable hspell support" ${WITH_ALL_OPTIONS} ) @@ -786,6 +787,23 @@ if( WITH_INOTIFY ) endif( ) +##### check for FAM/GAMIN ########################## + +if( WITH_GAMIN ) + check_include_file( "fam.h" HAVE_FAM_H ) + if( HAVE_FAM_H ) + pkg_search_module( GAMIN gamin ) + if( GAMIN_FOUND ) + set( HAVE_FAM 1 ) + else( GAMIN_FOUND ) + message(FATAL_ERROR "\nfam/gamin support was requested, but gamin was not found on your system" ) + endif( GAMIN_FOUND ) + else( HAVE_FAM_H ) + message(FATAL_ERROR "\nfam/gamin support was requested, but fam was not found on your system" ) + endif( HAVE_FAM_H ) +endif( WITH_GAMIN ) + + ##### check for aspell ########################## # we need ASPELL_DATADIR too |