Skip to content

Commit

Permalink
obs-scripting: disable Lua for Windows ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyvct committed Nov 20, 2022
1 parent d8a3dea commit cea28cb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deps/obs-scripting/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
option(ENABLE_SCRIPTING_LUA "Enable Lua scripting support" ON)
option(ENABLE_SCRIPTING_PYTHON "Enable Python scripting support" ON)

if(OS_WINDOWS AND ARCH_ARM64)
set(ENABLE_SCRIPTING_LUA OFF)
endif()

if(NOT ENABLE_SCRIPTING)
obs_status(DISABLED "obs-scripting")
return()
Expand Down

0 comments on commit cea28cb

Please sign in to comment.