2016-09-22 13:39:06 +00:00
|
|
|
cmake_minimum_required(VERSION 3.1)
|
2022-01-28 01:20:19 +00:00
|
|
|
project(lua LANGUAGES C VERSION 5.4.4)
|
2020-06-30 12:52:34 +00:00
|
|
|
|
2020-06-30 13:29:24 +00:00
|
|
|
option(LUA_SUPPORT_DL "Support dynamic loading of compiled modules" OFF)
|
2021-04-25 18:39:29 +00:00
|
|
|
option(LUA_BUILD_AS_CXX "Build lua as C++" OFF)
|
2021-04-26 15:02:07 +00:00
|
|
|
enable_language(CXX)
|
2020-06-30 13:29:24 +00:00
|
|
|
|
2020-06-30 12:52:34 +00:00
|
|
|
if(${PROJECT_NAME} STREQUAL ${CMAKE_PROJECT_NAME})
|
|
|
|
set(TOP_LEVEL TRUE)
|
|
|
|
else()
|
|
|
|
set(TOP_LEVEL FALSE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(TOP_LEVEL)
|
|
|
|
option(LUA_BUILD_BINARY "Build lua binary" ON)
|
|
|
|
option(LUA_BUILD_COMPILER "Build luac compiler" ON)
|
|
|
|
else()
|
|
|
|
option(LUA_BUILD_BINARY "Build lua binary" OFF)
|
|
|
|
option(LUA_BUILD_COMPILER "Build luac compiler" ON)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2022-01-28 01:20:19 +00:00
|
|
|
add_subdirectory(lua-5.4.4)
|