diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-04 23:21:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-04 23:21:38 +0900 |
commit | fdf54dfcb6664a986dc76e2aad21788be8ba263e (patch) | |
tree | de391a94b6e26c8dc5ea5ae5dfb7d39c72846127 /ConfigureChecks.cmake | |
parent | 20c1d4b0d7c159ab09fe01eb808d7b4b18c2b90b (diff) | |
download | tde-ebook-reader-fdf54dfcb6664a986dc76e2aad21788be8ba263e.tar.gz tde-ebook-reader-fdf54dfcb6664a986dc76e2aad21788be8ba263e.zip |
Add libzltext-tqt package and restructure zltext include files
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 0d7a03a..a69a3c7 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -45,5 +45,19 @@ endif( ) find_package( EXPAT ) if( NOT EXPAT_FOUND ) - tde_message_fatal( "expat support is required but not found on your system." ) + tde_message_fatal( "expat is required but not found on your system" ) endif() + + +##### check for fribidi +pkg_search_module( FRIBIDI fribidi ) +if( NOT FRIBIDI_FOUND ) + tde_message_fatal( "fribidi is required, but not found on your system" ) +endif( ) + + +##### check for unibreak +pkg_search_module( UNIBREAK libunibreak ) +if( NOT UNIBREAK_FOUND ) + tde_message_fatal( "unibreak is required, but not found on your system" ) +endif( ) |