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 /xine_artsplugin/tools | |
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 'xine_artsplugin/tools')
-rw-r--r-- | xine_artsplugin/tools/thumbnail/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xine_artsplugin/tools/thumbnail/CMakeLists.txt b/xine_artsplugin/tools/thumbnail/CMakeLists.txt index 4dbc9502..ac77313e 100644 --- a/xine_artsplugin/tools/thumbnail/CMakeLists.txt +++ b/xine_artsplugin/tools/thumbnail/CMakeLists.txt @@ -31,7 +31,7 @@ tde_add_kpart( videothumbnail AUTOMOC SOURCES videocreator.cpp videoscaler.cpp LINK - tdecore-shared ${XINE_LIBRARIES} pthread + tdecore-shared ${XINE_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} DESTINATION ${PLUGIN_INSTALL_DIR} ) |