From 370812f4b030b402cd2a9bf11f9c0627b5083b63 Mon Sep 17 00:00:00 2001 From: Jihoon Lee Date: Fri, 22 Oct 2021 23:41:02 +0900 Subject: [PATCH] [Android] Enable test for the android build This patch enable android build, this abling this option has an issue **Self evaluation:** 1. Build test: [X]Passed [ ]Failed [ ]Skipped 2. Run test: [X]Passed [ ]Failed [ ]Skipped Signed-off-by: Jihoon Lee --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 6ebda6d..ac0da33 100644 --- a/meson.build +++ b/meson.build @@ -153,7 +153,7 @@ if get_option('enable-logging') extra_defines += '-D__LOGGING__=1' endif -if get_option('enable-test') and get_option('platform') != 'android' +if get_option('enable-test') # and get_option('platform') != 'android' extra_defines += '-DENABLE_TEST=1' endif -- 2.7.4