Fix: [CMake] Link test executable with log library in Android (#11979)

pull/661/head
Biswapriyo Nath 3 months ago committed by GitHub
parent d9461e52af
commit 0937158499
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -288,6 +288,10 @@ target_link_libraries(openttd
)
target_link_libraries(openttd_test PRIVATE openttd_lib)
if(ANDROID)
target_link_libraries(openttd_test PRIVATE log)
endif()
include(Catch)
catch_discover_tests(openttd_test)

Loading…
Cancel
Save