From a27fdafafb066d5956ef7e21faf0bbe084559263 Mon Sep 17 00:00:00 2001 From: hyzboy Date: Sat, 5 Oct 2024 21:39:18 +0800 Subject: [PATCH] Added tsl-robin_map for win/vc --- compiler.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler.cmake b/compiler.cmake index 77334af..9ae5af8 100644 --- a/compiler.cmake +++ b/compiler.cmake @@ -12,6 +12,8 @@ IF(WIN32) if(MSVC) + find_package(tsl-robin-map CONFIG REQUIRED) + OPTION(MSVC_USE_DLL "use MSVC DLL" ON) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /std:c17 /arch:AVX2 /fp:fast /fp:except-")