From 475c6945ba741d767c2a8d834bcd6d0fda5f22d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Gonz=C3=A1lez=20Moreno?= Date: Fri, 28 Oct 2022 08:01:01 +0200 Subject: [PATCH] Refs #16052. Fix compilation in Ubuntu jammy. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ricardo González Moreno --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b1f957..88c178f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,10 +36,10 @@ if(Boost_FOUND) target_link_libraries(boost_threadpool INTERFACE ${Boost_LIBRARIES}) else() target_link_libraries(boost_threadpool INTERFACE - boost::thread - boost::type_traits - boost::function - boost::bind + Boost::thread + Boost::type_traits + Boost::function + Boost::bind ) endif()