From 8b37e33d4298434c3c0397687adb85e3aeb10062 Mon Sep 17 00:00:00 2001 From: Karthik Iyer Date: Sat, 12 Nov 2022 13:13:57 +0530 Subject: [PATCH] Remove pthread link from tests Signed-off-by: Karthik Iyer --- tests/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 479a894..cbbf2ea 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -26,8 +26,7 @@ foreach(TEST ${TESTS}) target_link_libraries(C${TEST} PUBLIC cmocka copentime - copentimelineio - pthread) + copentimelineio) target_compile_definitions(C${TEST} PRIVATE SAMPLE_DATA_DIR=${CMAKE_CURRENT_SOURCE_DIR}/sample_data/) add_test(NAME C${TEST} COMMAND C${TEST})