From e70d179950a4ed11f405b63890f5df201ce9a809 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=85=E3=81=AE=E5=A3=AB?= Date: Tue, 3 Jun 2025 11:49:37 +0800 Subject: [PATCH] fix mingw not supported PDB --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b9aae4a8..de9ce73f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -273,7 +273,7 @@ if(BUILD_STATIC) add_custom_target(libhv_static DEPENDS hv_static) endif() -if(WIN32) +if(WIN32 AND NOT MINGW) install(FILES $ DESTINATION bin OPTIONAL) endif()