Impress/Tiled Rendering: implement setPartMode.
[LibreOffice.git] / ios / Executable_LibreOffice.mk
blobbba74298a7ee0ac7a58925a7419ed3b287350a2c
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 $(eval $(call gb_Executable_Executable,LibreOffice))
5 $(eval $(call gb_Executable_use_api,LibreOffice,\
6 udkapi \
7 offapi \
8 ))
10 $(eval $(call gb_Executable_use_externals,LibreOffice,\
11 boost_headers \
12 iconv \
13 zlib \
16 $(eval $(call gb_Executable_use_system_darwin_frameworks,LibreOffice,\
17 Foundation \
18 CoreFoundation \
19 CoreGraphics \
20 CoreText \
21 UIKit \
24 $(eval $(call gb_Executable_add_generated_cxxobjects,LibreOffice,\
25 CustomTarget/ios/LibreOffice/native-code \
28 $(call gb_CustomTarget_get_workdir,ios/LibreOffice)/native-code.cxx :
29 mkdir -p `dirname $@`
30 $(SRCDIR)/solenv/bin/native-code.py \
31 -g core -g writer \
32 > $@
34 $(eval $(call gb_Executable_add_objcxxobjects,LibreOffice,\
35 ios/experimental/LibreOffice/LibreOffice/lo \
38 $(eval $(call gb_Executable_add_objcobjects,LibreOffice,\
39 ios/experimental/LibreOffice/LibreOffice/AppDelegate \
40 ios/experimental/LibreOffice/LibreOffice/main \
41 ios/experimental/LibreOffice/LibreOffice/View \
42 ios/experimental/LibreOffice/LibreOffice/ViewController \
45 # Mark the executable as depending on all libraries so that it gets
46 # rebuilt if any library has been rebuilt. Avoids need for "make
47 # ios.clean".
49 $(WORKDIR)/LinkTarget/Executable/LibreOffice : $(shell $(SRCDIR)/bin/lo-all-static-libs)
51 # vim: set ts=4 sw=4 et: