From 6bfb7aa4ef09eee32bd47c2f860546329de4ad98 Mon Sep 17 00:00:00 2001 From: jan Iversen Date: Tue, 14 Feb 2017 13:15:37 +0100 Subject: ios, added Prototype project The prototype project is a minimal project, with LibreOffice kit. The purpose is to check if it can build, and be foundation for other projects. The project have been updated to use the newest xcode Change-Id: Iac277629bc749bcacb83fb056c70a9ec46c8156d Reviewed-on: https://gerrit.libreoffice.org/35286 Tested-by: Jenkins Reviewed-by: Michael Meeks --- ios/CustomTarget_Prototype_app.mk | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 ios/CustomTarget_Prototype_app.mk (limited to 'ios/CustomTarget_Prototype_app.mk') diff --git a/ios/CustomTarget_Prototype_app.mk b/ios/CustomTarget_Prototype_app.mk new file mode 100644 index 000000000000..316b1116761b --- /dev/null +++ b/ios/CustomTarget_Prototype_app.mk @@ -0,0 +1,30 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#- Env ------------------------------------------------------------------------ +BUILDID :=$(shell cd $(SRCDIR) && git log -1 --format=%H) + +#- Targets -------------------------------------------------------------------- + +.PHONY: Prototype_setup + +# Register target +$(eval $(call gb_CustomTarget_CustomTarget,ios/Prototype)) + +# Build +# Depend on the custom target that sets up lo.xcconfig +$(call gb_CustomTarget_get_target,ios/Prototype): $(call gb_CustomTarget_get_target,ios/Lo_Xcconfig) + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),APP,2) + $(call IOSbuild,Prototype, clean build) + +# Clean +$(call gb_CustomTarget_get_clean_target,ios/Prototype): + $(call gb_Output_announce,$(subst $(WORKDIR)/Clean/,,$@),$(false),APP,2) + $(call IOSbuild,Prototype, clean) + +# vim: set noet sw=4 ts=4: -- cgit