cmake: omit lua.c (#1281)

This commit is contained in:
Dennis Brakhane
2025-11-03 18:01:22 +01:00
committed by GitHub
parent 07486015ce
commit 02e9eb0e26
+1
View File
@@ -1,6 +1,7 @@
cmake_minimum_required(VERSION 3.19)
file(GLOB LUA_HEADERS CONFIGURE_DEPENDS *.h)
file(GLOB LUA_SOURCES CONFIGURE_DEPENDS *.c)
list(FILTER LUA_SOURCES EXCLUDE REGEX lua\.c)
add_library(LUA STATIC
${LUA_SOURCES}