diff options
author | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-03-18 09:31:41 +0000 |
---|---|---|
committer | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-03-18 09:31:41 +0000 |
commit | cf1c517660d64ec62c90b4f0a18689711c7e0dba (patch) | |
tree | 17eaa28d3e3aa70ec22d575e93cb48a6d00d5370 /ConfigureChecks.cmake | |
parent | 8adb0337d38090c83291e36da63d65f407d66065 (diff) | |
download | tdebase-cf1c517660d64ec62c90b4f0a18689711c7e0dba.tar.gz tdebase-cf1c517660d64ec62c90b4f0a18689711c7e0dba.zip |
[kdebase/libkonq] added arts support and some cleanup/fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1225219 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 5263aabad..f237d77dd 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -132,6 +132,17 @@ if( BUILD_KDM OR BUILD_KXKB ) endif( ) +# arts +if( WITH_ARTS ) + pkg_search_module( ARTS arts ) + if( NOT ARTS_FOUND ) + message( FATAL_ERROR "\naRts is requested, but was not found on your system" ) + endif( ) +else( ) + set( WITHOUT_ARTS 1 ) +endif( ) + + # required stuff find_package( Qt ) find_package( TQt ) |