summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorDarrell Anderson <[email protected]>2012-06-01 12:41:02 -0500
committerDarrell Anderson <[email protected]>2012-06-01 12:41:02 -0500
commite3434a7df4c1840a9b56b47f8a632d0fcb6863ed (patch)
treedea46f10b69fe81352af4185ca4f76e6b0719715 /ConfigureChecks.cmake
parent504aaa08877c3368fa2ad986ccad14f9138bf966 (diff)
downloadtdebase-e3434a7df4c1840a9b56b47f8a632d0fcb6863ed.tar.gz
tdebase-e3434a7df4c1840a9b56b47f8a632d0fcb6863ed.zip
Fix svg thumbnail images not appearing in KControl/Appearance & Themes/ Background.
This resolves bug report 637. Thanks to Sl�vek Banko.
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 90d78be21..ded1d0025 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -211,6 +211,16 @@ else( )
set( WITHOUT_ARTS 1 )
endif( )
+# libart
+
+if( WITH_LIBART )
+ pkg_search_module( LIBART libart-2.0 )
+ if( NOT LIBART_FOUND )
+ message(FATAL_ERROR "\nlibart-2.0 support are requested, but not found on your system" )
+ endif( NOT LIBART_FOUND )
+ set( HAVE_LIBART 1 )
+endif( WITH_LIBART )
+
# required stuff
find_package( TQt )