diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-05-09 15:34:51 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-05-09 15:34:51 +0200 |
commit | 416977e868f8f31dd9ea8f5c79c27d6d0acb0323 (patch) | |
tree | 56226559d629df4104c4dbb3b02ea1bc872428dc | |
parent | 96d91316928117fdd5c96eeff33ae79a61333258 (diff) | |
download | kerberostray-416977e868f8f31dd9ea8f5c79c27d6d0acb0323.tar.gz kerberostray-416977e868f8f31dd9ea8f5c79c27d6d0acb0323.zip |
Updated to use new standalone tdehw library.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | ConfigureChecks.cmake | 17 | ||||
-rw-r--r-- | src/CMakeLists.txt | 3 |
2 files changed, 19 insertions, 1 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 717147f..7a7bafe 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -25,6 +25,23 @@ if( WITH_GCC_VISIBILITY ) endif( WITH_GCC_VISIBILITY ) +# 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" ) + + ##### check for tdeldap find_library( HAVE_LIBTDELDAP tdeldap ) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 220fe55..0935337 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -27,9 +27,10 @@ tde_add_executable( ${PROJECT_NAME} AUTOMOC tdecore-shared tdeui-shared tdeio-shared + ${TDEHW_LIBRARIES} ${LIBTDELDAP_LIBRARIES} ${KRB5_LIBRARIES} - + DESTINATION ${BIN_INSTALL_DIR} ) |