diff --git a/depends/lua/CMakeLists.txt b/depends/lua/CMakeLists.txt index 17bb2d73e..5c01eae89 100644 --- a/depends/lua/CMakeLists.txt +++ b/depends/lua/CMakeLists.txt @@ -96,8 +96,8 @@ ADD_LIBRARY ( lua SHARED ${SRC_LIBLUA} ) TARGET_LINK_LIBRARIES ( lua ${LIBS}) if (MSVC) - # need quotes to prevent /FI from being stripped: https://github.com/DFHack/dfhack/issues/1455 - target_compile_options(lua PRIVATE "/FI dfhack_llimits.h") + # need no space to prevent /FI from being stripped: https://github.com/DFHack/dfhack/issues/1455 + target_compile_options(lua PRIVATE "/FIdfhack_llimits.h") else () target_compile_options(lua PRIVATE -include dfhack_llimits.h) endif ()