diff options
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index a69a3c7..478f610 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -56,6 +56,13 @@ if( NOT FRIBIDI_FOUND ) endif( ) +##### check for sqlite3 +pkg_search_module( SQLITE sqlite3 ) +if( NOT SQLITE_FOUND ) + tde_message_fatal( "sqlite3 is required, but not found on your system" ) +endif( ) + + ##### check for unibreak pkg_search_module( UNIBREAK libunibreak ) if( NOT UNIBREAK_FOUND ) |