From eabfbf14b0bf4978da097bb1f7bb12c58be05f58 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Tue, 3 Dec 2024 17:19:23 -0600 Subject: [PATCH] fix(cmake): remove libatomic dependency --- Foundation/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/CMakeLists.txt b/Foundation/CMakeLists.txt index 5898d22f5..e985cc39a 100644 --- a/Foundation/CMakeLists.txt +++ b/Foundation/CMakeLists.txt @@ -159,7 +159,7 @@ else() target_link_libraries(Foundation PUBLIC ${CMAKE_DL_LIBS} rt Threads::Threads) else() target_compile_definitions(Foundation PUBLIC _XOPEN_SOURCE=500 POCO_HAVE_FD_EPOLL) - target_link_libraries(Foundation PUBLIC pthread atomic ${CMAKE_DL_LIBS} rt) + target_link_libraries(Foundation PUBLIC pthread ${CMAKE_DL_LIBS} rt) endif() endif(APPLE) endif(UNIX AND NOT ANDROID)