Skip to content

Commit

Permalink
Merge pull request #1633 from JakeOShannessy/lua-api-update
Browse files Browse the repository at this point in the history
Lua api update
  • Loading branch information
gforney authored Jul 8, 2023
2 parents 1a05e42 + bbb1aa9 commit d900fb7
Show file tree
Hide file tree
Showing 22 changed files with 582 additions and 343 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ Validation/*/FDS_Output_Files/*.csv
# Build directory for CMake
cbuild/
dist/
dist-debug/

# Local config for some editors
.vscode/
2 changes: 1 addition & 1 deletion Build/smokeview/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ SMVLUACORE_FILES = $(SMVLUACORE_DIR)/smv.lua $(SMVLUACORE_DIR)/ssf.lua \
$(SMVLUACORE_DIR)/unload.lua $(SMVLUACORE_DIR)/constants.lua \
$(SMVLUACORE_DIR)/gnuplot.lua $(SMVLUACORE_DIR)/plot.lua \
$(SMVLUACORE_DIR)/pl3d.lua \
$(SMVLUACORE_DIR)/camera.lua $(SMVLUACORE_DIR)/window.lua
$(SMVLUACORE_DIR)/camera.lua
SMVLUALIB_FILES = $(LIB_DIR_PLAT)/lfs$(DYNLIB_EXT)

smvluacore: $(SMVLUACORE_FILES) $(SMVLUALIB_FILES)
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ if (LUA)
Source/smvluacore/unload.lua Source/smvluacore/constants.lua
Source/smvluacore/gnuplot.lua Source/smvluacore/plot.lua
Source/smvluacore/pl3d.lua Source/smvluacore/json.lua
Source/smvluacore/camera.lua Source/smvluacore/window.lua
Source/smvluacore/camera.lua
)
install(
FILES
Expand All @@ -330,8 +330,8 @@ if (LUA)
Source/smvluacore/unload.lua Source/smvluacore/constants.lua
Source/smvluacore/gnuplot.lua Source/smvluacore/plot.lua
Source/smvluacore/pl3d.lua Source/smvluacore/json.lua
Source/smvluacore/camera.lua Source/smvluacore/window.lua
DESTINATION ${CMAKE_INSTALL_DATADIR}/smokeview
Source/smvluacore/camera.lua
DESTINATION ${CMAKE_INSTALL_DATADIR}/smokeview/scripts
)
if (VENDOR_LFS)
add_subdirectory(Source/lfs)
Expand Down
Loading

0 comments on commit d900fb7

Please sign in to comment.