Skip to content

Commit

Permalink
Disable libuv on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
wheremyfoodat authored Oct 30, 2023
1 parent 7b90126 commit 93042b9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ option(ENABLE_LUAJIT "Enable scripting with the Lua programming language" ON)
option(ENABLE_QT_GUI "Enable the Qt GUI. If not selected then the emulator uses a minimal SDL-based UI instead" OFF)
option(BUILD_HYDRA_CORE "Build a Hydra core" OFF)

if(ENABLE_LUAJIT AND ANDROID)
message(STATUS "Enabled LuaJIT on Android build. Automatically disabling it until it works properly")
set(ENABLE_LUAJIT OFF)
endif()

include_directories(${PROJECT_SOURCE_DIR}/include/)
include_directories(${PROJECT_SOURCE_DIR}/include/kernel)
include_directories (${FMT_INCLUDE_DIR})
Expand Down

0 comments on commit 93042b9

Please sign in to comment.