diff options
author | Michele Calgaro <[email protected]> | 2024-12-27 14:12:10 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-12-27 20:16:31 +0900 |
commit | 88cb1417b60deb6357228acb88f86f3f840bbb40 (patch) | |
tree | 03e358b506a152bb592c30cab089222a3e0fc0f1 /arts/gui | |
parent | dafa15cc2895d4b34f96be3f34766119a024296b (diff) | |
download | tdemultimedia-88cb1417b60deb6357228acb88f86f3f840bbb40.tar.gz tdemultimedia-88cb1417b60deb6357228acb88f86f3f840bbb40.zip |
Replace pthread and dl linking with cmake-based variables
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 1bbc86f7b626b7754fba76d992b367e734991291)
Diffstat (limited to 'arts/gui')
-rw-r--r-- | arts/gui/common/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arts/gui/common/CMakeLists.txt b/arts/gui/common/CMakeLists.txt index 030e3c65..8c7d45ad 100644 --- a/arts/gui/common/CMakeLists.txt +++ b/arts/gui/common/CMakeLists.txt @@ -29,7 +29,7 @@ link_directories( tde_add_library( artsgui_idl SHARED SOURCES artsgui.cpp VERSION 0.0.0 - LINK mcop ${DL_LIBRARIES} ${ARTS_LIBRARIES} + LINK mcop ${CMAKE_DL_LIBS} ${ARTS_LIBRARIES} DESTINATION ${LIB_INSTALL_DIR} ) |