diff options
author | Tor Lillqvist <tml@iki.fi> | 2020-04-23 17:24:10 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2020-06-09 15:09:31 +0200 |
commit | b2a7703bec86810f5c790622ce762e6475b6997e (patch) | |
tree | d91242d45c1eba26e0a15cbbbbc34e83294d54dc | |
parent | 2c0906bceef2889830cf9bd152b9e06b15f989a8 (diff) |
No owncloud-android-lib if we don't want to use Java at build time
Experimental. Let's see whether it makes sense to not use Java when
building the LO core for the (newer, Online-based) Android app.
Change-Id: I119861704d02bbfaa0cfd9f72c7b437f1730e48e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95847
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist <tml@collabora.com>
-rw-r--r-- | external/owncloud-android-lib/Module_owncloud-android-lib.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/external/owncloud-android-lib/Module_owncloud-android-lib.mk b/external/owncloud-android-lib/Module_owncloud-android-lib.mk index 486ed4053829..a57e70a79b84 100644 --- a/external/owncloud-android-lib/Module_owncloud-android-lib.mk +++ b/external/owncloud-android-lib/Module_owncloud-android-lib.mk @@ -9,9 +9,11 @@ $(eval $(call gb_Module_Module,owncloud_android_lib)) +ifneq ($(ENABLE_JAVA),) $(eval $(call gb_Module_add_targets,owncloud_android_lib, \ ExternalProject_owncloud_android_lib \ UnpackedTarball_owncloud_android_lib \ )) +endif # vim: set noet sw=4 ts=4: |