From 0aa025c0d9359aaa486c2f7725b5c3d7a852c828 Mon Sep 17 00:00:00 2001 From: Timo Suoranta Date: Fri, 26 Jul 2024 11:24:20 +0300 Subject: [PATCH] Fix for #847 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d9e6ca3b..60c45fab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,7 +38,7 @@ target_link_libraries( ) # Public dependency on some libraries required when using Mingw -if(WIN32 AND ${CMAKE_CXX_COMPILER_ID} MATCHES "GNU") +if(WIN32 AND ${CMAKE_CXX_COMPILER_ID} MATCHES "GNU|Clang") target_link_libraries(TracyClient PUBLIC ws2_32 dbghelp) endif()