mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 10:37:03 +00:00
19 lines
473 B
CMake
19 lines
473 B
CMake
#
|
|
# Copyright (C) 2010 - 2014 Eluna Lua Engine <http://emudevs.com/>
|
|
# This program is free software licensed under GPL version 3
|
|
# Please see the included DOCS/LICENSE.md for more information
|
|
#
|
|
|
|
file(GLOB sources *.c)
|
|
list(REMOVE_ITEM sources ${CMAKE_CURRENT_SOURCE_DIR}/lua.c)
|
|
list(REMOVE_ITEM sources ${CMAKE_CURRENT_SOURCE_DIR}/luac.c)
|
|
|
|
set(lua_STAT_SRCS
|
|
${sources}
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
add_library(lualib STATIC ${lua_STAT_SRCS})
|