CMakeLists.txt
changeset 7233 225179f64fd8
parent 7226 c3b4fc19fcd4
child 7256 5b97b9946cde
equal deleted inserted replaced
7229:c34516ec0f27 7233:225179f64fd8
   198     message(STATUS "Server will not be built per user request")
   198     message(STATUS "Server will not be built per user request")
   199     set(HAVE_NETSERVER false)
   199     set(HAVE_NETSERVER false)
   200 endif()
   200 endif()
   201 
   201 
   202 find_package(Lua)
   202 find_package(Lua)
   203 if(${LUA_FOUND})
   203 if(LUA_FOUND)
   204     message(STATUS "Lua library is present on your system (${LUA_DEFAULT})")
   204     message(STATUS "Lua library is present on your system (${LUA_DEFAULT})")
   205 else()
   205 else()
   206     message(STATUS "Lua library not found, building bundled dependency")
   206     message(STATUS "Lua library not found, building bundled dependency")
   207     add_subdirectory(misc/liblua)
   207     add_subdirectory(misc/liblua)
   208     #linking with liblua.a requires system readline -- this works everywhere, right?
   208     #linking with liblua.a requires system readline -- this works everywhere, right?