diff -r f87ed83568c8 -r 71bdf987e41f misc/liblua/CMakeLists.txt --- a/misc/liblua/CMakeLists.txt Thu Apr 21 11:54:21 2016 -0400 +++ b/misc/liblua/CMakeLists.txt Thu Apr 21 11:55:36 2016 -0400 @@ -23,4 +23,8 @@ set(LUA_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR} CACHE STRING "Lua include dir" FORCE) set(LUA_LIBRARY ${lua_fullpath} CACHE STRING "Lua library" FORCE) +#emscripten does not expose headers but has an internal binary copy +if(BUILD_ENGINE_JS) + set(LUA_LIBRARY "lua_emscripten_internal" CACHE STRING "Lua library" FORCE) +endif()