From 9202cc53b443c937329c33c885426cffb113d80b Mon Sep 17 00:00:00 2001 From: VeithMetro Date: Wed, 15 Jul 2026 13:03:10 +0200 Subject: [PATCH] Make sure common.lib does not always have to be included on Windows --- Source/common/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/common/common.h b/Source/common/common.h index 0497104d7..4881d5a45 100644 --- a/Source/common/common.h +++ b/Source/common/common.h @@ -19,7 +19,7 @@ #pragma once -#ifdef __WINDOWS__ +#if defined(__WINDOWS__) && !defined(THUNDER_NO_COMMON_LIB) #pragma comment(lib, "common.lib") #endif