Skip to content

Commit

Permalink
add lua table schema validate lib
Browse files Browse the repository at this point in the history
  • Loading branch information
sniper00 committed Aug 27, 2023
1 parent 3f0d866 commit dccdf22
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build/projects/lualib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ OBJECTS := \
$(OBJDIR)/lua_moon.o \
$(OBJDIR)/lua_navmesh.o \
$(OBJDIR)/lua_random.o \
$(OBJDIR)/lua_schema.o \
$(OBJDIR)/lua_serialize.o \
$(OBJDIR)/lua_socket.o \
$(OBJDIR)/lua_uuid.o \
Expand Down Expand Up @@ -192,6 +193,9 @@ $(OBJDIR)/lua_navmesh.o: ../../../lualib-src/lua_navmesh.cpp
$(OBJDIR)/lua_random.o: ../../../lualib-src/lua_random.cpp
@echo $(notdir $<)
$(SILENT) $(CXX) $(ALL_CXXFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
$(OBJDIR)/lua_schema.o: ../../../lualib-src/lua_schema.cpp
@echo $(notdir $<)
$(SILENT) $(CXX) $(ALL_CXXFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
$(OBJDIR)/lua_serialize.o: ../../../lualib-src/lua_serialize.cpp
@echo $(notdir $<)
$(SILENT) $(CXX) $(ALL_CXXFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
Expand Down
1 change: 1 addition & 0 deletions build/projects/lualib/lualib.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@
<ClCompile Include="..\..\..\lualib-src\lua_moon.cpp" />
<ClCompile Include="..\..\..\lualib-src\lua_navmesh.cpp" />
<ClCompile Include="..\..\..\lualib-src\lua_random.cpp" />
<ClCompile Include="..\..\..\lualib-src\lua_schema.cpp" />
<ClCompile Include="..\..\..\lualib-src\lua_serialize.cpp" />
<ClCompile Include="..\..\..\lualib-src\lua_socket.cpp" />
<ClCompile Include="..\..\..\lualib-src\lua_uuid.cpp" />
Expand Down
3 changes: 3 additions & 0 deletions build/projects/lualib/lualib.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@
<ClCompile Include="..\..\..\lualib-src\lua_random.cpp">
<Filter>lualib-src</Filter>
</ClCompile>
<ClCompile Include="..\..\..\lualib-src\lua_schema.cpp">
<Filter>lualib-src</Filter>
</ClCompile>
<ClCompile Include="..\..\..\lualib-src\lua_serialize.cpp">
<Filter>lualib-src</Filter>
</ClCompile>
Expand Down

0 comments on commit dccdf22

Please sign in to comment.