Merge pull request #848 from tksuoran/msys2_clang64_link_fix

Fix for #847
This commit is contained in:
Bartosz Taudul 2024-07-26 12:36:10 +02:00 committed by GitHub
commit ffb98a9724
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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()