Change FATAL_ERROR -> WARNING in CheckLuaCustomAllocator.cmake

7098-improve-post-process-behavior-with-transparent-objects
Petr Mikheev 1 year ago
parent 199f4ccae4
commit b379180393

@ -30,9 +30,9 @@ try_run(RUN_RESULT_VAR COMPILE_RESULT_VAR
)
if (NOT ${COMPILE_RESULT_VAR})
message(FATAL_ERROR "Incorrect Lua library: can't compile checkluacustomallocator.c" )
message(WARNING "Incorrect Lua library: can't compile checkluacustomallocator.c" )
elseif(NOT ${RUN_RESULT_VAR} EQUAL 0)
message(FATAL_ERROR "Incorrect Lua library: custom allocator not supported (likely LuaJit compiled with LJ_64 but without LJ_GC64)" )
message(WARNING "Incorrect Lua library: custom allocator not supported (likely LuaJit compiled with LJ_64 but without LJ_GC64)" )
else()
message(STATUS "Lua supports custom allocator")
endif()

Loading…
Cancel
Save