From 7ccc7470c727d86aea8bf3f6873fbc4c0a18105b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 9 May 2021 15:43:06 +0200 Subject: Updated to use new standalone tdehw library. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- ConfigureChecks.cmake | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'ConfigureChecks.cmake') diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 24e2a7a..a95ccf4 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -109,3 +109,21 @@ check_cxx_compiler_flag( -fpermissive HAVE_PERMISSIVE_SUPPORT ) if( HAVE_PERMISSIVE_SUPPORT ) set( ENABLE_PERMISSIVE_FLAG "-fpermissive" ) endif( ) + + +##### check for tdehwlib + +tde_save_and_set( CMAKE_REQUIRED_INCLUDES "${TDE_INCLUDE_DIR}" ) +check_cxx_source_compiles( " + #include + #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" ) -- cgit v1.2.3