CMake: Fix Android native library build

This commit is contained in:
Connor McLaughlin
2021-05-23 18:00:57 +10:00
parent 70396621e8
commit c9029a88c7
2 changed files with 5 additions and 4 deletions

View File

@ -6,11 +6,11 @@ add_subdirectory(common)
add_subdirectory(core)
add_subdirectory(scmversion)
if(BUILD_NOGUI_FRONTEND OR BUILD_QT_FRONTEND)
if(NOT BUILD_LIBRETRO_CORE)
add_subdirectory(frontend-common)
endif()
if(NOT BUILD_LIBRETRO_CORE)
if(NOT BUILD_LIBRETRO_CORE AND NOT ANDROID)
add_subdirectory(common-tests)
if(WIN32)
add_subdirectory(updater)