misc/liblua/CMakeLists.txt
changeset 7718 97ba379164ec
parent 7704 b25add2fdfa6
child 8044 796f2653f21d
child 8316 89232b2fa1d6
equal deleted inserted replaced
7717:2684fdb9d874 7718:97ba379164ec
     1 #this file is included only when system Lua library is not found
     1 #this file is included only when system Lua library is not found
     2 
     2 
     3 file(GLOB lua_src *.c *.h)
     3 file(GLOB lua_src *.c *.h)
     4 set(LIBRARY_OUTPUT_PATH ${EXECUTABLE_OUTPUT_PATH})
       
     5 
     4 
     6 if(WIN32)
     5 if(WIN32)
     7     add_definitions(-DLUA_BUILD_AS_DLL)
     6     add_definitions(-DLUA_BUILD_AS_DLL)
     8     add_library(lua SHARED ${lua_src})
     7     add_library(lua SHARED ${lua_src})
     9 
     8