1
0
Fork 0

for compiliers other than msvc we need to tell lua that its building as a dll

This commit is contained in:
worktycho 2014-05-28 15:59:59 +01:00
parent d29b242674
commit 171e13de4f
1 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,12 @@ endif()
# Lua needs to be linked dynamically on Windows and statically on *nix, so that LuaRocks work
if (WIN32)
#for compiliers other than msvc we need to tell lua that its building as a dll
if (NOT MSVC)
add_flags_cxx(-DLUA_BUILD_AS_DLL=1)
endif()
add_library(lua SHARED ${SOURCE})
set(LIBRARY_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/MCServer)