diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-01-03 13:29:08 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-01-03 20:21:51 +0200 |
commit | 13eca8620a34670a1941e7546825f063b4d28efe (patch) | |
tree | 12ba0b4c049a9706e39f7a06a0a701954a5ed339 /Makefile.in | |
parent | f6c44ad3f7351e5285f26c4504fae7c8155db1a2 (diff) |
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 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 8f7dc9739e65..b5a04281a3ef 100644 --- a/Makefile.in +++ b/Makefile.in @@ -287,6 +287,9 @@ endif ifeq ($(OS),ANDROID) cd android && $(GNUMAKE) -j $(PARALLELISM) $(GMAKE_OPTIONS) endif +ifeq ($(OS),IOS) + cd ios && $(GNUMAKE) -j $(PARALLELISM) $(GMAKE_OPTIONS) +endif build-nocheck : export SKIP_TESTS := YES build-nocheck : build |