From 13eca8620a34670a1941e7546825f063b4d28efe Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 3 Jan 2013 13:29:08 +0200 Subject: More hacking on an iOS "Viewer" app that doesn't do much anything yet The Viewer app is intended to eventually resemble the experimental Android DocumentLoader app. Build using the gbuild mechanism, which is also invoked from an Xcode project. This seems to work out fine, the resulting app installs at least on the simulator, and you can debug all the LO code involved even if Xcode (obviously) has no knowledge of the LO source files/classes/etc. Change-Id: Ic96178d80b8d6467cac969b29e37f0d39513acf9 --- ios/Module_ios.mk | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ios/Module_ios.mk (limited to 'ios/Module_ios.mk') diff --git a/ios/Module_ios.mk b/ios/Module_ios.mk new file mode 100644 index 000000000000..e723b438008f --- /dev/null +++ b/ios/Module_ios.mk @@ -0,0 +1,20 @@ +# -*- 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/. + +$(eval $(call gb_Module_Module,ios)) + +ifeq ($(OS),IOS) + +$(eval $(call gb_Module_add_targets,ios,\ + Executable_Viewer \ + CustomTarget_Viewer_app \ +)) + +endif + +# vim: set noet sw=4 ts=4: -- cgit