From fbaf2dee580e378bc217a9efc86b6b9c25e3e560 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Mon, 19 Aug 2024 01:01:57 +0300 Subject: [PATCH] Added a missing dependency on Boost.TypeTraits to CMakeLists.txt. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 869e815..fe45d2e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,4 +19,5 @@ target_link_libraries(boost_integer Boost::core Boost::static_assert Boost::throw_exception + Boost::type_traits )