diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-27 12:33:55 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-12-27 20:44:51 +0900 |
commit | 5d649b164b64e3e9e93eb3929b4e9e37f78a44ed (patch) | |
tree | a645d2c9bc55f2ef96e4eafac0717ee0623dc88f /mcop_mt | |
parent | f386da73ff591f119184b585085e13c7624fc9f7 (diff) | |
download | arts-5d649b164b64e3e9e93eb3929b4e9e37f78a44ed.tar.gz arts-5d649b164b64e3e9e93eb3929b4e9e37f78a44ed.zip |
Replace pthread and dl linking with cmake-based variables
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 45ff2423e03a3ed3c8855c7b599a664891623ba1)
Diffstat (limited to 'mcop_mt')
-rw-r--r-- | mcop_mt/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mcop_mt/CMakeLists.txt b/mcop_mt/CMakeLists.txt index 832b6d8..8816447 100644 --- a/mcop_mt/CMakeLists.txt +++ b/mcop_mt/CMakeLists.txt @@ -24,6 +24,6 @@ include_directories( tde_add_library( mcop_mt SHARED SOURCES threads_posix.cpp VERSION 1.0.0 - LINK artsflow-shared pthread + LINK artsflow-shared ${CMAKE_THREAD_LIBS_INIT} DESTINATION ${LIB_INSTALL_DIR} ) |