Disable libuv on Android

This commit is contained in:
wheremyfoodat 2023-10-30 21:37:59 +02:00 committed by GitHub
parent 7b9012671a
commit 93042b9283
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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})