From d019edb2bfea5dcff2f4dca376995b226a033898 Mon Sep 17 00:00:00 2001 From: ado Date: Sun, 18 Feb 2024 21:58:06 +0100 Subject: [PATCH] [skip ci] Update unit test CMakeList for MINGW --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 8439639..e6bbc61 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -15,7 +15,7 @@ endif() if (MSVC) add_compile_options(/bigobj) elseif (MINGW) - add_compile_options(-Wa,-mbig-obj) + add_compile_options(-Wa,-mbig-obj,-mcmodel=large) endif () include(FetchContent)