Skip to content

Commit

Permalink
Merge pull request #397 from liangzai12/1st
Browse files Browse the repository at this point in the history
simply add LuaComponent
  • Loading branch information
liangzai12 authored Nov 30, 2022
2 parents 36b7173 + 282d42e commit 31d9942
Show file tree
Hide file tree
Showing 756 changed files with 440,303 additions and 1 deletion.
11 changes: 10 additions & 1 deletion engine/3rdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,13 @@ if(NOT TARGET Jolt)
MSVC_RUNTIME_LIBRARY "MultiThreadedDLL")
endif()

endif()
endif()

if(NOT TARGET sol2)
add_subdirectory(sol2-3.3.0)
endif()


if(NOT TARGET lua)
include(lua.cmake)
endif()
15 changes: 15 additions & 0 deletions engine/3rdparty/lua-5.4.4/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.gitattributes

*.so
*.o
*.a

manual/manual.html

testes/time.txt
testes/time-debug.txt

testes/libs/all

temp
lua
7 changes: 7 additions & 0 deletions engine/3rdparty/lua-5.4.4/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Lua

This is the repository of Lua development code, as seen by the Lua team. It contains the full history of all commits but is mirrored irregularly. For complete information about Lua, visit [Lua.org](https://www.lua.org/).

Please **do not** send pull requests. To report issues, post a message to the [Lua mailing list](https://www.lua.org/lua-l.html).

Download official Lua releases from [Lua.org](https://www.lua.org/download.html).
9 changes: 9 additions & 0 deletions engine/3rdparty/lua-5.4.4/all
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
make -s -j
cd testes/libs; make -s
cd .. # back to directory 'testes'
ulimit -S -s 1000
if { ../lua -W all.lua; } then
echo -e "\n\n final OK!!!!\n\n"
else
echo -e "\n\n >>>> BUG!!!!\n\n"
fi
Loading

0 comments on commit 31d9942

Please sign in to comment.