From 5ea47b1c8a9f50e93303db49cd8a0f702447f5f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Lucas=20Golini?= Date: Sun, 11 Aug 2024 00:50:09 -0300 Subject: [PATCH] Small build fix. --- premake4.lua | 3 +++ premake5.lua | 2 ++ 2 files changed, 5 insertions(+) diff --git a/premake4.lua b/premake4.lua index 1465bb846..2d3cf8316 100644 --- a/premake4.lua +++ b/premake4.lua @@ -1120,6 +1120,9 @@ solution "eepp" files { "src/thirdparty/harfbuzz/**.cc" } includedirs { "src/thirdparty/freetype2/include", "src/thirdparty/harfbuzz" } build_base_cpp_configuration( "harfbuzz" ) + if is_vs() then + buildoptions{ "/bigobj" } + end end project "chipmunk-static" diff --git a/premake5.lua b/premake5.lua index 6c2e7132f..90f3dffdb 100644 --- a/premake5.lua +++ b/premake5.lua @@ -933,6 +933,8 @@ workspace "eepp" incdirs { "src/thirdparty/freetype2/include", "src/thirdparty/harfbuzz" } build_base_cpp_configuration( "harfbuzz" ) target_dir_thirdparty() + filter "action:vs*" + buildoptions{ "/bigobj" } project "chipmunk-static" kind "StaticLib"