From fe3dd7aed3ed0c6352d46c42bbdd48461ea82b6d Mon Sep 17 00:00:00 2001 From: milahu Date: Thu, 21 May 2026 01:03:55 +0200 Subject: [PATCH] Add 'atomic' component to Boost package requirements fix: error LNK1104: cannot open file 'boost_atomic.lib' --- build/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/CMakeLists.txt b/build/CMakeLists.txt index 14ffbc51..bee77316 100644 --- a/build/CMakeLists.txt +++ b/build/CMakeLists.txt @@ -286,7 +286,7 @@ else() endif() endif() -find_package(Boost REQUIRED COMPONENTS filesystem program_options) +find_package(Boost REQUIRED COMPONENTS filesystem program_options atomic) if(NOT DEFINED Boost_FOUND) message(SEND_ERROR "Boost is not found, or your boost version was below 1.46. Please download Boost!") endif()