From 63070b4d3cf27a84560d86f2be7268d4d2478bca Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 12 Feb 2013 18:06:31 -0800 Subject: [PATCH] link thread library to mixer target --- mixer/CMakeLists.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mixer/CMakeLists.txt b/mixer/CMakeLists.txt index d092eb1a02..57a6606be7 100644 --- a/mixer/CMakeLists.txt +++ b/mixer/CMakeLists.txt @@ -6,4 +6,9 @@ file(GLOB MIXER_SRCS src/*.cpp src/*.h) add_executable(mixer ${MIXER_SRCS} ${HIFI_SHARED_SRCS}) -include_directories(${HIFI_SHARED_DIR}) \ No newline at end of file +include_directories(${HIFI_SHARED_DIR}) + +find_package(Threads REQUIRED) +target_link_libraries(interface + ${CMAKE_THREAD_LIBS_INIT} +) \ No newline at end of file