Windows+Ninja: Fix build error due to trying to include " dfhack_llimits.h"

Ref #1455
develop
lethosor 2019-10-04 13:15:58 -04:00
parent dcce9ae599
commit 8675ff660c
1 changed files with 2 additions and 2 deletions

@ -96,8 +96,8 @@ ADD_LIBRARY ( lua SHARED ${SRC_LIBLUA} )
TARGET_LINK_LIBRARIES ( lua ${LIBS}) TARGET_LINK_LIBRARIES ( lua ${LIBS})
if (MSVC) if (MSVC)
# need quotes to prevent /FI from being stripped: https://github.com/DFHack/dfhack/issues/1455 # need no space to prevent /FI from being stripped: https://github.com/DFHack/dfhack/issues/1455
target_compile_options(lua PRIVATE "/FI dfhack_llimits.h") target_compile_options(lua PRIVATE "/FIdfhack_llimits.h")
else () else ()
target_compile_options(lua PRIVATE -include dfhack_llimits.h) target_compile_options(lua PRIVATE -include dfhack_llimits.h)
endif () endif ()