From a648d09b1b5fd5304f70d756a672de2295c427b6 Mon Sep 17 00:00:00 2001 From: KimLS Date: Mon, 8 Dec 2025 21:30:30 -0800 Subject: [PATCH] Add uuid to unix builds --- common/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index 640257a92..f471f58b5 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt @@ -1293,6 +1293,7 @@ if(${OPENSSL_VERSION} VERSION_GREATER_EQUAL "1.1.1") endif() if(UNIX) + target_link_libraries(common PUBLIC uuid) set_source_files_properties("SocketLib/Mime.cpp" PROPERTY COMPILE_FLAGS -Wno-unused-result) set_source_files_properties("patches/sod.cpp" "patches/sof.cpp" "patches/rof.cpp" "patches/rof2.cpp" "patches/uf.cpp" PROPERTIES COMPILE_FLAGS -O0) endif()