From 487f907ffbeb1fcc4f4bb65766845c913b1c5fd2 Mon Sep 17 00:00:00 2001 From: light7734 Date: Wed, 8 Oct 2025 06:30:30 +0330 Subject: [PATCH] build(time): link tbb to fix gcc compilation issues --- modules/time/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/time/CMakeLists.txt b/modules/time/CMakeLists.txt index 0cfb0a1..3b391ba 100644 --- a/modules/time/CMakeLists.txt +++ b/modules/time/CMakeLists.txt @@ -1,3 +1,4 @@ add_library_module(time timer.cpp) +target_link_libraries(time PUBLIC tbb) add_test_module(time timer.test.cpp)