summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-05-09 14:24:50 +0200
committerSlávek Banko <slavek.banko@axis.cz>2021-05-09 14:24:50 +0200
commitdc16d7e588328888160b904d71213c26dea0ac0c (patch)
tree0688fe249229c71d1393c35a77c770442290654c /ConfigureChecks.cmake
parentd7fce8ee6a5c227241788727096f7a3a54eb9e21 (diff)
downloadkima-dc16d7e588328888160b904d71213c26dea0ac0c.tar.gz
kima-dc16d7e588328888160b904d71213c26dea0ac0c.zip
Updated to use new standalone tdehw library.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake20
1 files changed, 20 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index ab62c41..de59523 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -25,6 +25,26 @@ if( WITH_GCC_VISIBILITY )
endif( WITH_GCC_VISIBILITY )
+##### check for tdehwlib
+
+if( WITH_TDEHWLIB )
+ tde_save_and_set( CMAKE_REQUIRED_INCLUDES "${TDE_INCLUDE_DIR}" )
+ check_cxx_source_compiles( "
+ #include <kdemacros.h>
+ #ifndef __TDE_HAVE_TDEHWLIB
+ #error tdecore is not build with tdehwlib
+ #endif
+ int main() { return 0; } "
+ HAVE_TDEHWLIB
+ )
+ tde_restore( CMAKE_REQUIRED_INCLUDES )
+ if( NOT HAVE_TDEHWLIB )
+ tde_message_fatal( "tdehwlib is required, but not built in tdecore" )
+ endif( NOT HAVE_TDEHWLIB )
+ set( TDEHW_LIBRARIES "tdehw-shared" )
+endif( )
+
+
##### check for NVidia support
if( WITH_NVCONTROL )