Updated to use new standalone tdehw library.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/7/head
Slávek Banko 3 years ago
parent 661158c53c
commit 7ccc7470c7
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -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 <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" )

@ -28,6 +28,7 @@ tde_add_library( tdeldap SHARED AUTOMOC
tdeui-shared
tdecore-shared
tdeio-shared
${TDEHW_LIBRARIES}
tdesu
krb5 kadm5clnt kadm5srv hdb lber
ldap

Loading…
Cancel
Save