summaryrefslogtreecommitdiffstats
path: root/ios/Module_ios.mk
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-01-03 13:29:08 +0200
committerTor Lillqvist <tml@iki.fi>2013-01-03 20:21:51 +0200
commit13eca8620a34670a1941e7546825f063b4d28efe (patch)
tree12ba0b4c049a9706e39f7a06a0a701954a5ed339 /ios/Module_ios.mk
parentDo build executables for iOS (diff)
downloadcore-13eca8620a34670a1941e7546825f063b4d28efe.tar.gz
core-13eca8620a34670a1941e7546825f063b4d28efe.zip
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
Diffstat (limited to 'ios/Module_ios.mk')
-rw-r--r--ios/Module_ios.mk20
1 files changed, 20 insertions, 0 deletions
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: