aboutsummaryrefslogtreecommitdiff
BranchCommit messageAuthorAge
gpcfMerge remote-tracking branch 'pexin/clickablechatweblinks' into gpcfGabriel Pérez-Cerezo4 years
lifo-fixesAdd static_save and prevent UDP connect exhaustionsGabriel Pérez-Cerezo5 years
releaseset lifo version stringgpcf6 months
 
a> 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
# Look for Lua library to use
# This selects LuaJIT by default

option(ENABLE_LUAJIT "Enable LuaJIT support" TRUE)
set(USE_LUAJIT FALSE)
option(REQUIRE_LUAJIT "Require LuaJIT support" FALSE)
if(REQUIRE_LUAJIT)
	set(ENABLE_LUAJIT TRUE)
endif()
if(ENABLE_LUAJIT)
	find_package(LuaJIT)
	if(LUAJIT_FOUND)
		set(USE_LUAJIT TRUE)