From 3aa1dd1e06002ee1991cce438b0c571bd7f7452f Mon Sep 17 00:00:00 2001 From: WerWolv Date: Thu, 7 Jul 2022 23:30:09 +0200 Subject: [PATCH] build: Added usp10 library to maybe provide Windows 7 support --- main/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index 07caf8d1f..b0b333e96 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt @@ -26,7 +26,7 @@ set_target_properties(main PROPERTIES add_compile_definitions(IMHEX_PROJECT_NAME="${PROJECT_NAME}") if (WIN32) - target_link_libraries(main PUBLIC libimhex wsock32 ws2_32 Dwmapi.lib) + target_link_libraries(main PUBLIC usp10 libimhex wsock32 ws2_32 Dwmapi.lib) else () target_link_libraries(main PUBLIC libimhex pthread) endif ()