mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
20 lines
473 B
CMake
20 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})
|