diff options
author | Michele Calgaro <[email protected]> | 2024-12-27 14:12:10 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-12-27 18:28:41 +0900 |
commit | 1bbc86f7b626b7754fba76d992b367e734991291 (patch) | |
tree | bd5be534bd3bae27fa656bb8c25cfb15fc962163 /krec/CMakeLists.txt | |
parent | 5c6479b287f1705f83156d3913e4830810f69a8f (diff) | |
download | tdemultimedia-1bbc86f7b626b7754fba76d992b367e734991291.tar.gz tdemultimedia-1bbc86f7b626b7754fba76d992b367e734991291.zip |
Replace pthread and dl linking with cmake-based variables
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'krec/CMakeLists.txt')
-rw-r--r-- | krec/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/krec/CMakeLists.txt b/krec/CMakeLists.txt index c5aadced..2c867eb6 100644 --- a/krec/CMakeLists.txt +++ b/krec/CMakeLists.txt @@ -62,8 +62,8 @@ tde_add_tdeinit_executable( krec AUTOMOC tdeutils-shared tdetexteditor-shared mcop kmedia2_idl soundserver_idl artsflow_idl artsmoduleseffects-shared artscontrolsupport-shared artsgui_kde-shared - krec_common-static ${DL_LIBRARIES} artskde-shared - ${ARTSC_LIBRARIES} pthread + krec_common-static ${CMAKE_DL_LIBS} artskde-shared + ${ARTSC_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ) |