ci: Add Android aarch64 build

This commit is contained in:
Macdu 2022-12-26 21:49:43 +01:00 committed by merry
parent c63c134582
commit 71aae99f49
2 changed files with 29 additions and 4 deletions

View file

@ -14,6 +14,10 @@ if (NOT TARGET Catch2::Catch2)
if (DYNARMIC_TESTS)
add_library(Catch2::Catch2 INTERFACE IMPORTED GLOBAL)
target_include_directories(Catch2::Catch2 INTERFACE catch/include)
if(CMAKE_SYSTEM_NAME STREQUAL "Android")
target_link_libraries(Catch2::Catch2 INTERFACE log)
endif()
endif()
endif()