From 8f60343cb7f33277515c3b1b25d1e90e53477556 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov <0x7fffff@guattari.ru> Date: Tue, 16 Aug 2022 05:19:53 +0400 Subject: test --- config.cmake.in | 6 ++++-- source/kit/c11/threads.h | 6 +++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/config.cmake.in b/config.cmake.in index 7909293..2638feb 100644 --- a/config.cmake.in +++ b/config.cmake.in @@ -1,6 +1,8 @@ @PACKAGE_INIT@ -include(CMakeFindDependencyMacro) -find_dependency(Threads) +if(NOT @KIT_DISABLE_SYSTEM_THREADS@) + include(CMakeFindDependencyMacro) + find_dependency(Threads) +endif() include("${CMAKE_CURRENT_LIST_DIR}/@KIT_TARGETS@.cmake") diff --git a/source/kit/c11/threads.h b/source/kit/c11/threads.h index f0a398a..2083429 100644 --- a/source/kit/c11/threads.h +++ b/source/kit/c11/threads.h @@ -75,7 +75,11 @@ * C++11 and above already have thread_local keyword */ # ifndef thread_local -# define thread_local _Thread_local +# if _MSC_VER +# define thread_local __declspec(thread) +# else +# define thread_local _Thread_local +# endif # endif #endif -- cgit v1.2.3