diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-08 03:07:46 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-08 03:07:46 -0600 |
commit | b911168351033cde8e3b524060722e0001c27bda (patch) | |
tree | 15f51b276fad5454bfddd75c3f93d38779ad7a9a /CMakeLists.txt | |
parent | 87201a3741bd9d4b4638be7b3d8c44a737115b0f (diff) | |
download | tdelibs-b911168351033cde8e3b524060722e0001c27bda.tar.gz tdelibs-b911168351033cde8e3b524060722e0001c27bda.zip |
Add pcre detection to tdelibs CMake files
This closes Bug 569
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 939a6da36..420eed83d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -76,6 +76,7 @@ OPTION( WITH_OPENEXR "Enable openexr support" OFF ) OPTION( WITH_UTEMPTER "Use utempter for utmp management" OFF ) OPTION( WITH_AVAHI "Enable AVAHI support" OFF ) OPTION( WITH_ELFICON "Enable ELF embedded icon support" OFF ) +OPTION( WITH_PCRE "Enable pcre regex support for kjs" ON ) OPTION( WITH_ASPELL "Enable aspell support" OFF ) OPTION( WITH_HSPELL "Enable hspell support" OFF ) @@ -736,6 +737,16 @@ if( WITH_ELFICON ) endif( ) +##### check for pcre ########################### + +if( WITH_PCRE ) + pkg_search_module( LIBPCRE libpcre ) + if( NOT LIBPCRE_FOUND ) + message(FATAL_ERROR "\npcre support are requested, but not found on your system" ) + endif( NOT LIBPCRE_FOUND ) + set( HAVE_PCREPOSIX 1 ) +endif( ) + ##### check for aspell ########################## # we need ASPELL_DATADIR too |