[Libreoffice-commits] online.git: 2 commits - configure.ac .gitignore Mobile/Mobile Mobile/Mobile.xcodeproj Mobile/README
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Thu Nov 1 23:16:12 UTC 2018
.gitignore | 8
Mobile/Mobile.xcodeproj/project.pbxproj | 438 +++++++++++++++-----------------
Mobile/README | 19 -
configure.ac | 136 +++++++++
4 files changed, 358 insertions(+), 243 deletions(-)
New commits:
commit d381540db56ad99d4e79862ac6fdb6ccffbb815f
Author: Tor Lillqvist <tml at collabora.com>
AuthorDate: Fri Nov 2 01:13:17 2018 +0200
Commit: Tor Lillqvist <tml at collabora.com>
CommitDate: Fri Nov 2 01:13:17 2018 +0200
Update Mobile/README to match new configury mechanism for the iOS app
Change-Id: I7d7f1d53823f0215024537fa65f00a163c7b61e5
diff --git a/Mobile/README b/Mobile/README
index 989faa002..b2f62c3a8 100644
--- a/Mobile/README
+++ b/Mobile/README
@@ -50,20 +50,11 @@ Then run:
and
-./configure --enable-iosapp --with-iosapp-name="My Own Mobile LibreOffice"
+./configure --enable-iosapp --with-iosapp-name="My Own Mobile LibreOffice" --with-lo-srcdir=$HOME/lo/ios --with-lo-builddir=$HOME/lo/ios --with-poco-includes=/opt/ios-poco/include --with-poco-libs=/opt/ios-poco/lib
-The only purpose of running the configure script in this tree is to
-get the app name as the CFBundleDisplayName property into the
-Mobile/Mobile/Info.plist file.
-
-Sure, as we require editing the project.pbxproj file anyway, we could
-as well also require editing the Info.plist file and avoid having to
-run the configure script.
-
-Or maybe the other way around, should we also have the configure
-script expand the project.pbxproj file, passing the configure script
-pointers to the LibreOffice source and build directories, and POCO and
-PNG install directories. Those would then expaned in project.pbxproj,
-and it wouldn't need to be hand-edited.
+The configure script puts the app name as the CFBundleDisplayName
+property into the Mobile/Mobile/Info.plist file, and set up some
+symbolic links that point to the LIbreOffice core source and build
+directories (which can be the same, of course).
4) Now you can open the Mobile Xcode project, build it, and run it.
commit 5f2a6f6aa3a0d0ba8a6ba2fb833f98393f94bb9f
Author: Tor Lillqvist <tml at collabora.com>
AuthorDate: Fri Nov 2 00:37:01 2018 +0200
Commit: Tor Lillqvist <tml at collabora.com>
CommitDate: Fri Nov 2 01:08:37 2018 +0200
Avoid need for manual editing of the iOS app Xcode project file
Since some days, you need to run the configure script in a tree where
you are going to build the iOS app anyway (to set the app's
user-visible name). Use the configure script to set up a couple of
symbolic links pointing to the LibreOffice core source and build
directories and the Poco installation. Use those symbolic links in the
project file.
Also, now a vendor-specific app icon set can be given with the
--with-iosapp-appicon option.
Change-Id: Ib936388a4cc680bd97ca6ef95a91e3296ab04d18
diff --git a/.gitignore b/.gitignore
index 72bc7664d..110ab9b6c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -81,3 +81,11 @@ docker/instdir
docker/builddir
Mobile/Mobile/Info.plist
+
+# symlinks created by configure for the iOS app Xcode project
+losrcdir-symlink
+lobuilddir-symlink
+pocoinclude-symlink
+pocolib-symlink
+ICU.dat
+Mobile/Mobile/Assets.xcassets/AppIcon.appiconset
diff --git a/Mobile/Mobile.xcodeproj/project.pbxproj b/Mobile/Mobile.xcodeproj/project.pbxproj
index 8739933a2..e719f46d7 100644
--- a/Mobile/Mobile.xcodeproj/project.pbxproj
+++ b/Mobile/Mobile.xcodeproj/project.pbxproj
@@ -30,7 +30,7 @@
BE5EB5D421400DC100E0826C /* DocumentBroker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5D321400DC100E0826C /* DocumentBroker.cpp */; };
BE5EB5D621401E0F00E0826C /* Storage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5D521401E0F00E0826C /* Storage.cpp */; };
BE5EB5DA2140363100E0826C /* ios.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5D92140363100E0826C /* ios.mm */; };
- BE5EB5DC2140480B00E0826C /* icudt63l.dat in Resources */ = {isa = PBXBuildFile; fileRef = BE5EB5DB2140480B00E0826C /* icudt63l.dat */; };
+ BE5EB5DC2140480B00E0826C /* ICU.dat in Resources */ = {isa = PBXBuildFile; fileRef = BE5EB5DB2140480B00E0826C /* ICU.dat */; };
BE6362C22153B5B500F4237E /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BE6362C12153B5B500F4237E /* MobileCoreServices.framework */; };
BE8D772C2136762500AC58EA /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE8D772B2136762500AC58EA /* AppDelegate.mm */; };
BE8D772F2136762500AC58EA /* DocumentBrowserViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE8D772E2136762500AC58EA /* DocumentBrowserViewController.mm */; };
@@ -72,52 +72,52 @@
BE00F89E21396585001CE2D4 /* images */ = {isa = PBXFileReference; lastKnownFileType = folder; name = images; path = ../../../loleaflet/dist/images; sourceTree = "<group>"; };
BE00F8B4213ED543001CE2D4 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
BE00F8B6213ED573001CE2D4 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
- BE34D10F218B66B600815297 /* docsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh.cxx; path = "../../ios-device/sw/source/uibase/app/docsh.cxx"; sourceTree = "<group>"; };
- BE34D110218B66B600815297 /* docstyle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docstyle.cxx; path = "../../ios-device/sw/source/uibase/app/docstyle.cxx"; sourceTree = "<group>"; };
- BE34D111218B66B600815297 /* docshdrw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docshdrw.cxx; path = "../../ios-device/sw/source/uibase/app/docshdrw.cxx"; sourceTree = "<group>"; };
- BE34D112218B66B600815297 /* docshini.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docshini.cxx; path = "../../ios-device/sw/source/uibase/app/docshini.cxx"; sourceTree = "<group>"; };
- BE34D113218B66B600815297 /* swmodul1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swmodul1.cxx; path = "../../ios-device/sw/source/uibase/app/swmodul1.cxx"; sourceTree = "<group>"; };
- BE34D114218B66B600815297 /* swdllimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = swdllimpl.hxx; path = "../../ios-device/sw/source/uibase/app/swdllimpl.hxx"; sourceTree = "<group>"; };
- BE34D115218B66B600815297 /* swwait.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swwait.cxx; path = "../../ios-device/sw/source/uibase/app/swwait.cxx"; sourceTree = "<group>"; };
- BE34D116218B66B600815297 /* swdll.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swdll.cxx; path = "../../ios-device/sw/source/uibase/app/swdll.cxx"; sourceTree = "<group>"; };
- BE34D117218B66B600815297 /* apphdl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = apphdl.cxx; path = "../../ios-device/sw/source/uibase/app/apphdl.cxx"; sourceTree = "<group>"; };
- BE34D118218B66B600815297 /* appenv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appenv.cxx; path = "../../ios-device/sw/source/uibase/app/appenv.cxx"; sourceTree = "<group>"; };
- BE34D119218B66B600815297 /* appenv.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = appenv.hxx; path = "../../ios-device/sw/source/uibase/app/appenv.hxx"; sourceTree = "<group>"; };
- BE34D11A218B66B600815297 /* swmodule.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swmodule.cxx; path = "../../ios-device/sw/source/uibase/app/swmodule.cxx"; sourceTree = "<group>"; };
- BE34D11B218B66B600815297 /* docst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docst.cxx; path = "../../ios-device/sw/source/uibase/app/docst.cxx"; sourceTree = "<group>"; };
- BE34D11C218B66B600815297 /* applab.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = applab.cxx; path = "../../ios-device/sw/source/uibase/app/applab.cxx"; sourceTree = "<group>"; };
- BE34D11D218B66B600815297 /* docsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh2.cxx; path = "../../ios-device/sw/source/uibase/app/docsh2.cxx"; sourceTree = "<group>"; };
- BE34D11E218B66B600815297 /* mainwn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mainwn.cxx; path = "../../ios-device/sw/source/uibase/app/mainwn.cxx"; sourceTree = "<group>"; };
- BE34D11F218B66B600815297 /* appopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appopt.cxx; path = "../../ios-device/sw/source/uibase/app/appopt.cxx"; sourceTree = "<group>"; };
- BE34D121218B678F00815297 /* annotsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotsh.cxx; path = "../../ios-device/sw/source/uibase/shells/annotsh.cxx"; sourceTree = "<group>"; };
- BE34D122218B678F00815297 /* beziersh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = beziersh.cxx; path = "../../ios-device/sw/source/uibase/shells/beziersh.cxx"; sourceTree = "<group>"; };
- BE34D123218B678F00815297 /* olesh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = olesh.cxx; path = "../../ios-device/sw/source/uibase/shells/olesh.cxx"; sourceTree = "<group>"; };
- BE34D124218B678F00815297 /* drwtxtex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drwtxtex.cxx; path = "../../ios-device/sw/source/uibase/shells/drwtxtex.cxx"; sourceTree = "<group>"; };
- BE34D125218B678F00815297 /* textsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textsh.cxx; path = "../../ios-device/sw/source/uibase/shells/textsh.cxx"; sourceTree = "<group>"; };
- BE34D126218B678F00815297 /* textfld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfld.cxx; path = "../../ios-device/sw/source/uibase/shells/textfld.cxx"; sourceTree = "<group>"; };
- BE34D127218B678F00815297 /* slotadd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slotadd.cxx; path = "../../ios-device/sw/source/uibase/shells/slotadd.cxx"; sourceTree = "<group>"; };
- BE34D128218B678F00815297 /* listsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listsh.cxx; path = "../../ios-device/sw/source/uibase/shells/listsh.cxx"; sourceTree = "<group>"; };
- BE34D129218B678F00815297 /* grfshex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grfshex.cxx; path = "../../ios-device/sw/source/uibase/shells/grfshex.cxx"; sourceTree = "<group>"; };
- BE34D12A218B679000815297 /* frmsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmsh.cxx; path = "../../ios-device/sw/source/uibase/shells/frmsh.cxx"; sourceTree = "<group>"; };
- BE34D12B218B679000815297 /* basesh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = basesh.cxx; path = "../../ios-device/sw/source/uibase/shells/basesh.cxx"; sourceTree = "<group>"; };
- BE34D12C218B679000815297 /* textidx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textidx.cxx; path = "../../ios-device/sw/source/uibase/shells/textidx.cxx"; sourceTree = "<group>"; };
- BE34D12D218B679000815297 /* txtattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtattr.cxx; path = "../../ios-device/sw/source/uibase/shells/txtattr.cxx"; sourceTree = "<group>"; };
- BE34D12E218B679000815297 /* txtcrsr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtcrsr.cxx; path = "../../ios-device/sw/source/uibase/shells/txtcrsr.cxx"; sourceTree = "<group>"; };
- BE34D12F218B679000815297 /* txtnum.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtnum.cxx; path = "../../ios-device/sw/source/uibase/shells/txtnum.cxx"; sourceTree = "<group>"; };
- BE34D130218B679000815297 /* drwbassh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drwbassh.cxx; path = "../../ios-device/sw/source/uibase/shells/drwbassh.cxx"; sourceTree = "<group>"; };
- BE34D131218B679000815297 /* mediash.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediash.cxx; path = "../../ios-device/sw/source/uibase/shells/mediash.cxx"; sourceTree = "<group>"; };
- BE34D132218B679000815297 /* textdrw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdrw.cxx; path = "../../ios-device/sw/source/uibase/shells/textdrw.cxx"; sourceTree = "<group>"; };
- BE34D133218B679000815297 /* drawsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawsh.cxx; path = "../../ios-device/sw/source/uibase/shells/drawsh.cxx"; sourceTree = "<group>"; };
- BE34D134218B679000815297 /* drformsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drformsh.cxx; path = "../../ios-device/sw/source/uibase/shells/drformsh.cxx"; sourceTree = "<group>"; };
- BE34D135218B679000815297 /* navsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = navsh.cxx; path = "../../ios-device/sw/source/uibase/shells/navsh.cxx"; sourceTree = "<group>"; };
- BE34D136218B679000815297 /* textglos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textglos.cxx; path = "../../ios-device/sw/source/uibase/shells/textglos.cxx"; sourceTree = "<group>"; };
- BE34D137218B679000815297 /* drawdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawdlg.cxx; path = "../../ios-device/sw/source/uibase/shells/drawdlg.cxx"; sourceTree = "<group>"; };
- BE34D138218B679000815297 /* tabsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabsh.cxx; path = "../../ios-device/sw/source/uibase/shells/tabsh.cxx"; sourceTree = "<group>"; };
- BE34D139218B679000815297 /* grfsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grfsh.cxx; path = "../../ios-device/sw/source/uibase/shells/grfsh.cxx"; sourceTree = "<group>"; };
- BE34D13A218B679000815297 /* langhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = langhelper.cxx; path = "../../ios-device/sw/source/uibase/shells/langhelper.cxx"; sourceTree = "<group>"; };
- BE34D13B218B679000815297 /* textsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textsh2.cxx; path = "../../ios-device/sw/source/uibase/shells/textsh2.cxx"; sourceTree = "<group>"; };
- BE34D13C218B679000815297 /* textsh1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textsh1.cxx; path = "../../ios-device/sw/source/uibase/shells/textsh1.cxx"; sourceTree = "<group>"; };
- BE34D13D218B679000815297 /* drwtxtsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drwtxtsh.cxx; path = "../../ios-device/sw/source/uibase/shells/drwtxtsh.cxx"; sourceTree = "<group>"; };
+ BE34D10F218B66B600815297 /* docsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/docsh.cxx"; sourceTree = "<group>"; };
+ BE34D110218B66B600815297 /* docstyle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docstyle.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/docstyle.cxx"; sourceTree = "<group>"; };
+ BE34D111218B66B600815297 /* docshdrw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docshdrw.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/docshdrw.cxx"; sourceTree = "<group>"; };
+ BE34D112218B66B600815297 /* docshini.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docshini.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/docshini.cxx"; sourceTree = "<group>"; };
+ BE34D113218B66B600815297 /* swmodul1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swmodul1.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/swmodul1.cxx"; sourceTree = "<group>"; };
+ BE34D114218B66B600815297 /* swdllimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = swdllimpl.hxx; path = "../losrcdir-symlink/sw/source/uibase/app/swdllimpl.hxx"; sourceTree = "<group>"; };
+ BE34D115218B66B600815297 /* swwait.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swwait.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/swwait.cxx"; sourceTree = "<group>"; };
+ BE34D116218B66B600815297 /* swdll.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swdll.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/swdll.cxx"; sourceTree = "<group>"; };
+ BE34D117218B66B600815297 /* apphdl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = apphdl.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/apphdl.cxx"; sourceTree = "<group>"; };
+ BE34D118218B66B600815297 /* appenv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appenv.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/appenv.cxx"; sourceTree = "<group>"; };
+ BE34D119218B66B600815297 /* appenv.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = appenv.hxx; path = "../losrcdir-symlink/sw/source/uibase/app/appenv.hxx"; sourceTree = "<group>"; };
+ BE34D11A218B66B600815297 /* swmodule.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swmodule.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/swmodule.cxx"; sourceTree = "<group>"; };
+ BE34D11B218B66B600815297 /* docst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docst.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/docst.cxx"; sourceTree = "<group>"; };
+ BE34D11C218B66B600815297 /* applab.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = applab.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/applab.cxx"; sourceTree = "<group>"; };
+ BE34D11D218B66B600815297 /* docsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh2.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/docsh2.cxx"; sourceTree = "<group>"; };
+ BE34D11E218B66B600815297 /* mainwn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mainwn.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/mainwn.cxx"; sourceTree = "<group>"; };
+ BE34D11F218B66B600815297 /* appopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appopt.cxx; path = "../losrcdir-symlink/sw/source/uibase/app/appopt.cxx"; sourceTree = "<group>"; };
+ BE34D121218B678F00815297 /* annotsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotsh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/annotsh.cxx"; sourceTree = "<group>"; };
+ BE34D122218B678F00815297 /* beziersh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = beziersh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/beziersh.cxx"; sourceTree = "<group>"; };
+ BE34D123218B678F00815297 /* olesh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = olesh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/olesh.cxx"; sourceTree = "<group>"; };
+ BE34D124218B678F00815297 /* drwtxtex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drwtxtex.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/drwtxtex.cxx"; sourceTree = "<group>"; };
+ BE34D125218B678F00815297 /* textsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textsh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/textsh.cxx"; sourceTree = "<group>"; };
+ BE34D126218B678F00815297 /* textfld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfld.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/textfld.cxx"; sourceTree = "<group>"; };
+ BE34D127218B678F00815297 /* slotadd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slotadd.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/slotadd.cxx"; sourceTree = "<group>"; };
+ BE34D128218B678F00815297 /* listsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listsh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/listsh.cxx"; sourceTree = "<group>"; };
+ BE34D129218B678F00815297 /* grfshex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grfshex.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/grfshex.cxx"; sourceTree = "<group>"; };
+ BE34D12A218B679000815297 /* frmsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmsh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/frmsh.cxx"; sourceTree = "<group>"; };
+ BE34D12B218B679000815297 /* basesh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = basesh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/basesh.cxx"; sourceTree = "<group>"; };
+ BE34D12C218B679000815297 /* textidx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textidx.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/textidx.cxx"; sourceTree = "<group>"; };
+ BE34D12D218B679000815297 /* txtattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtattr.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/txtattr.cxx"; sourceTree = "<group>"; };
+ BE34D12E218B679000815297 /* txtcrsr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtcrsr.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/txtcrsr.cxx"; sourceTree = "<group>"; };
+ BE34D12F218B679000815297 /* txtnum.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtnum.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/txtnum.cxx"; sourceTree = "<group>"; };
+ BE34D130218B679000815297 /* drwbassh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drwbassh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/drwbassh.cxx"; sourceTree = "<group>"; };
+ BE34D131218B679000815297 /* mediash.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediash.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/mediash.cxx"; sourceTree = "<group>"; };
+ BE34D132218B679000815297 /* textdrw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdrw.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/textdrw.cxx"; sourceTree = "<group>"; };
+ BE34D133218B679000815297 /* drawsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawsh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/drawsh.cxx"; sourceTree = "<group>"; };
+ BE34D134218B679000815297 /* drformsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drformsh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/drformsh.cxx"; sourceTree = "<group>"; };
+ BE34D135218B679000815297 /* navsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = navsh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/navsh.cxx"; sourceTree = "<group>"; };
+ BE34D136218B679000815297 /* textglos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textglos.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/textglos.cxx"; sourceTree = "<group>"; };
+ BE34D137218B679000815297 /* drawdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawdlg.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/drawdlg.cxx"; sourceTree = "<group>"; };
+ BE34D138218B679000815297 /* tabsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabsh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/tabsh.cxx"; sourceTree = "<group>"; };
+ BE34D139218B679000815297 /* grfsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grfsh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/grfsh.cxx"; sourceTree = "<group>"; };
+ BE34D13A218B679000815297 /* langhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = langhelper.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/langhelper.cxx"; sourceTree = "<group>"; };
+ BE34D13B218B679000815297 /* textsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textsh2.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/textsh2.cxx"; sourceTree = "<group>"; };
+ BE34D13C218B679000815297 /* textsh1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textsh1.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/textsh1.cxx"; sourceTree = "<group>"; };
+ BE34D13D218B679000815297 /* drwtxtsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drwtxtsh.cxx; path = "../losrcdir-symlink/sw/source/uibase/shells/drwtxtsh.cxx"; sourceTree = "<group>"; };
BE58E129217F295B00249358 /* Log.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Log.hpp; sourceTree = "<group>"; };
BE58E12A217F295B00249358 /* Png.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Png.hpp; sourceTree = "<group>"; };
BE58E12B217F295B00249358 /* SigUtil.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = SigUtil.hpp; sourceTree = "<group>"; };
@@ -126,18 +126,18 @@
BE58E12E217F295B00249358 /* Protocol.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Protocol.hpp; sourceTree = "<group>"; };
BE58E12F217F295B00249358 /* Session.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Session.hpp; sourceTree = "<group>"; };
BE58E13021874A2E00249358 /* Mobile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Mobile.entitlements; sourceTree = "<group>"; };
- BE58E132218793B500249358 /* svpbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpbmp.cxx; path = "../../ios-device/vcl/headless/svpbmp.cxx"; sourceTree = "<group>"; };
- BE58E133218793B500249358 /* svpglyphcache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpglyphcache.cxx; path = "../../ios-device/vcl/headless/svpglyphcache.cxx"; sourceTree = "<group>"; };
- BE58E134218793B600249358 /* svpgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpgdi.cxx; path = "../../ios-device/vcl/headless/svpgdi.cxx"; sourceTree = "<group>"; };
- BE58E135218793B600249358 /* headlessinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headlessinst.cxx; path = "../../ios-device/vcl/headless/headlessinst.cxx"; sourceTree = "<group>"; };
- BE58E136218793B600249358 /* svpcairotextrender.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpcairotextrender.cxx; path = "../../ios-device/vcl/headless/svpcairotextrender.cxx"; sourceTree = "<group>"; };
- BE58E137218793B600249358 /* svpprn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpprn.cxx; path = "../../ios-device/vcl/headless/svpprn.cxx"; sourceTree = "<group>"; };
- BE58E138218793B600249358 /* svpdummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdummies.cxx; path = "../../ios-device/vcl/headless/svpdummies.cxx"; sourceTree = "<group>"; };
- BE58E139218793B600249358 /* svpinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpinst.cxx; path = "../../ios-device/vcl/headless/svpinst.cxx"; sourceTree = "<group>"; };
- BE58E13A218793B600249358 /* svpdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdata.cxx; path = "../../ios-device/vcl/headless/svpdata.cxx"; sourceTree = "<group>"; };
- BE58E13B218793B600249358 /* svptext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svptext.cxx; path = "../../ios-device/vcl/headless/svptext.cxx"; sourceTree = "<group>"; };
- BE58E13C218793B600249358 /* svpvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpvd.cxx; path = "../../ios-device/vcl/headless/svpvd.cxx"; sourceTree = "<group>"; };
- BE58E13D218793B600249358 /* svpframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpframe.cxx; path = "../../ios-device/vcl/headless/svpframe.cxx"; sourceTree = "<group>"; };
+ BE58E132218793B500249358 /* svpbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpbmp.cxx; path = "../losrcdir-symlink/vcl/headless/svpbmp.cxx"; sourceTree = "<group>"; };
+ BE58E133218793B500249358 /* svpglyphcache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpglyphcache.cxx; path = "../losrcdir-symlink/vcl/headless/svpglyphcache.cxx"; sourceTree = "<group>"; };
+ BE58E134218793B600249358 /* svpgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpgdi.cxx; path = "../losrcdir-symlink/vcl/headless/svpgdi.cxx"; sourceTree = "<group>"; };
+ BE58E135218793B600249358 /* headlessinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headlessinst.cxx; path = "../losrcdir-symlink/vcl/headless/headlessinst.cxx"; sourceTree = "<group>"; };
+ BE58E136218793B600249358 /* svpcairotextrender.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpcairotextrender.cxx; path = "../losrcdir-symlink/vcl/headless/svpcairotextrender.cxx"; sourceTree = "<group>"; };
+ BE58E137218793B600249358 /* svpprn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpprn.cxx; path = "../losrcdir-symlink/vcl/headless/svpprn.cxx"; sourceTree = "<group>"; };
+ BE58E138218793B600249358 /* svpdummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdummies.cxx; path = "../losrcdir-symlink/vcl/headless/svpdummies.cxx"; sourceTree = "<group>"; };
+ BE58E139218793B600249358 /* svpinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpinst.cxx; path = "../losrcdir-symlink/vcl/headless/svpinst.cxx"; sourceTree = "<group>"; };
+ BE58E13A218793B600249358 /* svpdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdata.cxx; path = "../losrcdir-symlink/vcl/headless/svpdata.cxx"; sourceTree = "<group>"; };
+ BE58E13B218793B600249358 /* svptext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svptext.cxx; path = "../losrcdir-symlink/vcl/headless/svptext.cxx"; sourceTree = "<group>"; };
+ BE58E13C218793B600249358 /* svpvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpvd.cxx; path = "../losrcdir-symlink/vcl/headless/svpvd.cxx"; sourceTree = "<group>"; };
+ BE58E13D218793B600249358 /* svpframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpframe.cxx; path = "../losrcdir-symlink/vcl/headless/svpframe.cxx"; sourceTree = "<group>"; };
BE5EB5B9213FE29900E0826C /* Log.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Log.cpp; sourceTree = "<group>"; };
BE5EB5BA213FE29900E0826C /* SpookyV2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SpookyV2.cpp; sourceTree = "<group>"; };
BE5EB5BB213FE29900E0826C /* Session.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Session.cpp; sourceTree = "<group>"; };
@@ -152,7 +152,7 @@
BE5EB5D321400DC100E0826C /* DocumentBroker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentBroker.cpp; sourceTree = "<group>"; };
BE5EB5D521401E0F00E0826C /* Storage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Storage.cpp; sourceTree = "<group>"; };
BE5EB5D92140363100E0826C /* ios.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ios.mm; path = ../../ios/ios.mm; sourceTree = "<group>"; };
- BE5EB5DB2140480B00E0826C /* icudt63l.dat */ = {isa = PBXFileReference; lastKnownFileType = file; name = icudt63l.dat; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/icudt63l.dat"; sourceTree = "<group>"; };
+ BE5EB5DB2140480B00E0826C /* ICU.dat */ = {isa = PBXFileReference; lastKnownFileType = file; name = ICU.dat; path = ../../../ICU.dat; sourceTree = "<group>"; };
BE636210215101D000F4237E /* WebSocketHandler.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = WebSocketHandler.hpp; sourceTree = "<group>"; };
BE6362C12153B5B500F4237E /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
BE8D77272136762500AC58EA /* Mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Mobile.app; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -169,93 +169,93 @@
BE8D773C2136762600AC58EA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
BE8D773E2136762600AC58EA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
BE8D773F2136762600AC58EA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- BE8D85BB214055F2009F1860 /* filter */ = {isa = PBXFileReference; lastKnownFileType = folder; name = filter; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/filter"; sourceTree = "<group>"; };
- BE8D85BC214055F2009F1860 /* offapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = offapi.rdb; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/offapi.rdb"; sourceTree = "<group>"; };
- BE8D85BD214055F2009F1860 /* share */ = {isa = PBXFileReference; lastKnownFileType = folder; name = share; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/share"; sourceTree = "<group>"; };
- BE8D85BE214055F2009F1860 /* config */ = {isa = PBXFileReference; lastKnownFileType = folder; name = config; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/config"; sourceTree = "<group>"; };
- BE8D85BF214055F2009F1860 /* registry */ = {isa = PBXFileReference; lastKnownFileType = folder; name = registry; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/registry"; sourceTree = "<group>"; };
- BE8D85C0214055F2009F1860 /* oovbaapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = oovbaapi.rdb; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/oovbaapi.rdb"; sourceTree = "<group>"; };
- BE8D85C1214055F2009F1860 /* udkapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = udkapi.rdb; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/udkapi.rdb"; sourceTree = "<group>"; };
- BE8D85C2214055F2009F1860 /* services */ = {isa = PBXFileReference; lastKnownFileType = folder; name = services; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/services"; sourceTree = "<group>"; };
- BE8D85C3214055F2009F1860 /* services.rdb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = services.rdb; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/services.rdb"; sourceTree = "<group>"; };
- BE8D85C4214055F3009F1860 /* program */ = {isa = PBXFileReference; lastKnownFileType = folder; name = program; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/program"; sourceTree = "<group>"; };
- BE8D85C6214055F3009F1860 /* fundamentalrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = fundamentalrc; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/fundamentalrc"; sourceTree = "<group>"; };
- BE8D85C7214055F3009F1860 /* unorc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = unorc; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/unorc"; sourceTree = "<group>"; };
- BE8D85C8214055F3009F1860 /* rc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = rc; path = "../../../../ios-device/workdir/CustomTarget/ios/resources/rc"; sourceTree = "<group>"; };
+ BE8D85BB214055F2009F1860 /* filter */ = {isa = PBXFileReference; lastKnownFileType = folder; name = filter; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/filter"; sourceTree = "<group>"; };
+ BE8D85BC214055F2009F1860 /* offapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = offapi.rdb; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/offapi.rdb"; sourceTree = "<group>"; };
+ BE8D85BD214055F2009F1860 /* share */ = {isa = PBXFileReference; lastKnownFileType = folder; name = share; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/share"; sourceTree = "<group>"; };
+ BE8D85BE214055F2009F1860 /* config */ = {isa = PBXFileReference; lastKnownFileType = folder; name = config; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/config"; sourceTree = "<group>"; };
+ BE8D85BF214055F2009F1860 /* registry */ = {isa = PBXFileReference; lastKnownFileType = folder; name = registry; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/registry"; sourceTree = "<group>"; };
+ BE8D85C0214055F2009F1860 /* oovbaapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = oovbaapi.rdb; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/oovbaapi.rdb"; sourceTree = "<group>"; };
+ BE8D85C1214055F2009F1860 /* udkapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = udkapi.rdb; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/udkapi.rdb"; sourceTree = "<group>"; };
+ BE8D85C2214055F2009F1860 /* services */ = {isa = PBXFileReference; lastKnownFileType = folder; name = services; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/services"; sourceTree = "<group>"; };
+ BE8D85C3214055F2009F1860 /* services.rdb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = services.rdb; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/services.rdb"; sourceTree = "<group>"; };
+ BE8D85C4214055F3009F1860 /* program */ = {isa = PBXFileReference; lastKnownFileType = folder; name = program; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/program"; sourceTree = "<group>"; };
+ BE8D85C6214055F3009F1860 /* fundamentalrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = fundamentalrc; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/fundamentalrc"; sourceTree = "<group>"; };
+ BE8D85C7214055F3009F1860 /* unorc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = unorc; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/unorc"; sourceTree = "<group>"; };
+ BE8D85C8214055F3009F1860 /* rc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = rc; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/rc"; sourceTree = "<group>"; };
BE93D41E216B93D8007A39F4 /* discovery.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = discovery.xml; path = ../../../discovery.xml; sourceTree = "<group>"; };
- BE93D422216CAA7A007A39F4 /* unohelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp.cxx; path = "../../ios-device/vcl/source/app/unohelp.cxx"; sourceTree = "<group>"; };
- BE93D423216CAA7A007A39F4 /* stdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdtext.cxx; path = "../../ios-device/vcl/source/app/stdtext.cxx"; sourceTree = "<group>"; };
- BE93D424216CAA7A007A39F4 /* session.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = session.cxx; path = "../..//ios-device/vcl/source/app/session.cxx"; sourceTree = "<group>"; };
- BE93D425216CAA7A007A39F4 /* svmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmain.cxx; path = "../../ios-device/vcl/source/app/svmain.cxx"; sourceTree = "<group>"; };
- BE93D426216CAA7A007A39F4 /* help.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = help.cxx; path = "../../ios-device/vcl/source/app/help.cxx"; sourceTree = "<group>"; };
- BE93D427216CAA7A007A39F4 /* i18nhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = i18nhelp.cxx; path = "../../ios-device/vcl/source/app/i18nhelp.cxx"; sourceTree = "<group>"; };
- BE93D428216CAA7A007A39F4 /* vclevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclevent.cxx; path = "../../ios-device/vcl/source/app/vclevent.cxx"; sourceTree = "<group>"; };
- BE93D429216CAA7A007A39F4 /* brand.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brand.cxx; path = "../../ios-device/vcl/source/app/brand.cxx"; sourceTree = "<group>"; };
- BE93D42A216CAA7A007A39F4 /* IconThemeInfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeInfo.cxx; path = "../../ios-device/vcl/source/app/IconThemeInfo.cxx"; sourceTree = "<group>"; };
- BE93D42B216CAA7A007A39F4 /* salusereventlist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salusereventlist.cxx; path = "../../ios-device/vcl/source/app/salusereventlist.cxx"; sourceTree = "<group>"; };
- BE93D42C216CAA7A007A39F4 /* salplug.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salplug.cxx; path = "../../ios-device/vcl/source/app/salplug.cxx"; sourceTree = "<group>"; };
- BE93D42D216CAA7A007A39F4 /* unohelp2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp2.cxx; path = "../../ios-device/vcl/source/app/unohelp2.cxx"; sourceTree = "<group>"; };
- BE93D42E216CAA7A007A39F4 /* IconThemeSelector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeSelector.cxx; path = "../../ios-device/vcl/source/app/IconThemeSelector.cxx"; sourceTree = "<group>"; };
- BE93D42F216CAA7A007A39F4 /* settings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cxx; path = "../../ios-device/vcl/source/app/settings.cxx"; sourceTree = "<group>"; };
- BE93D430216CAA7A007A39F4 /* svapp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svapp.cxx; path = "../../ios-device/vcl/source/app/svapp.cxx"; sourceTree = "<group>"; };
- BE93D431216CAA7A007A39F4 /* customweld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customweld.cxx; path = "../../ios-device/vcl/source/app/customweld.cxx"; sourceTree = "<group>"; };
- BE93D432216CAA7A007A39F4 /* ITiledRenderable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ITiledRenderable.cxx; path = "../../ios-device/vcl/source/app/ITiledRenderable.cxx"; sourceTree = "<group>"; };
- BE93D433216CAA7A007A39F4 /* timer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cxx; path = "../../ios-device/vcl/source/app/timer.cxx"; sourceTree = "<group>"; };
- BE93D434216CAA7A007A39F4 /* sound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cxx; path = "../../ios-device/vcl/source/app/sound.cxx"; sourceTree = "<group>"; };
- BE93D435216CAA7A007A39F4 /* dbggui.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbggui.cxx; path = "../../ios-device/vcl/source/app/dbggui.cxx"; sourceTree = "<group>"; };
- BE93D436216CAA7A007A39F4 /* idle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = idle.cxx; path = "../../ios-device/vcl/source/app/idle.cxx"; sourceTree = "<group>"; };
- BE93D437216CAA7A007A39F4 /* scheduler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scheduler.cxx; path = "../../ios-device/vcl/source/app/scheduler.cxx"; sourceTree = "<group>"; };
- BE93D438216CAA7A007A39F4 /* dndhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndhelp.cxx; path = "../../ios-device/vcl/source/app/dndhelp.cxx"; sourceTree = "<group>"; };
- BE93D439216CAA7B007A39F4 /* salvtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvtables.cxx; path = "../../ios-device/vcl/source/app/salvtables.cxx"; sourceTree = "<group>"; };
- BE93D43A216CAA7B007A39F4 /* IconThemeScanner.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeScanner.cxx; path = "../../ios-device/vcl/source/app/IconThemeScanner.cxx"; sourceTree = "<group>"; };
- BE93D43B216CAA7B007A39F4 /* svdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdata.cxx; path = "../../ios-device/vcl/source/app/svdata.cxx"; sourceTree = "<group>"; };
- BE93D43E216D5580007A39F4 /* zoomitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zoomitem.cxx; path = "../../ios-device/sfx2/source/doc/zoomitem.cxx"; sourceTree = "<group>"; };
- BE93D43F216D5580007A39F4 /* printhelper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = printhelper.hxx; path = "../../ios-device/sfx2/source/doc/printhelper.hxx"; sourceTree = "<group>"; };
- BE93D440216D5580007A39F4 /* Metadatable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Metadatable.cxx; path = "../../ios-device/sfx2/source/doc/Metadatable.cxx"; sourceTree = "<group>"; };
- BE93D441216D5580007A39F4 /* docfilt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfilt.cxx; path = "../../ios-device/sfx2/source/doc/docfilt.cxx"; sourceTree = "<group>"; };
- BE93D442216D5580007A39F4 /* docfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfile.cxx; path = "../../ios-device/sfx2/source/doc/docfile.cxx"; sourceTree = "<group>"; };
- BE93D443216D5580007A39F4 /* oleprops.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = oleprops.hxx; path = "../../ios-device/sfx2/source/doc/oleprops.hxx"; sourceTree = "<group>"; };
- BE93D444216D5580007A39F4 /* graphhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphhelp.cxx; path = "../../ios-device/sfx2/source/doc/graphhelp.cxx"; sourceTree = "<group>"; };
- BE93D445216D5580007A39F4 /* saveastemplatedlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = saveastemplatedlg.cxx; path = "../../ios-device/sfx2/source/doc/saveastemplatedlg.cxx"; sourceTree = "<group>"; };
- BE93D446216D5580007A39F4 /* objstor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objstor.cxx; path = "../../ios-device/sfx2/source/doc/objstor.cxx"; sourceTree = "<group>"; };
- BE93D447216D5580007A39F4 /* docmacromode.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docmacromode.cxx; path = "../../ios-device/sfx2/source/doc/docmacromode.cxx"; sourceTree = "<group>"; };
- BE93D448216D5580007A39F4 /* sfxbasemodel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxbasemodel.cxx; path = "../../ios-device/sfx2/source/doc/sfxbasemodel.cxx"; sourceTree = "<group>"; };
- BE93D449216D5580007A39F4 /* doctemplateslocal.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = doctemplateslocal.hxx; path = "../../ios-device/sfx2/source/doc/doctemplateslocal.hxx"; sourceTree = "<group>"; };
- BE93D44A216D5580007A39F4 /* SfxDocumentMetaData.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SfxDocumentMetaData.cxx; path = "../../ios-device/sfx2/source/doc/SfxDocumentMetaData.cxx"; sourceTree = "<group>"; };
- BE93D44B216D5580007A39F4 /* templatedlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatedlg.cxx; path = "../../ios-device/sfx2/source/doc/templatedlg.cxx"; sourceTree = "<group>"; };
- BE93D44C216D5580007A39F4 /* docinsert.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docinsert.cxx; path = "../../ios-device/sfx2/source/doc/docinsert.cxx"; sourceTree = "<group>"; };
- BE93D44D216D5580007A39F4 /* syspathw32.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = syspathw32.hxx; path = "../../ios-device/sfx2/source/doc/syspathw32.hxx"; sourceTree = "<group>"; };
- BE93D44E216D5580007A39F4 /* exoticfileloadexception.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = exoticfileloadexception.hxx; path = "../../ios-device/sfx2/source/doc/exoticfileloadexception.hxx"; sourceTree = "<group>"; };
- BE93D44F216D5580007A39F4 /* syspath.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syspath.cxx; path = "../../ios-device/sfx2/source/doc/syspath.cxx"; sourceTree = "<group>"; };
- BE93D450216D5580007A39F4 /* exoticfileloadexception.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = exoticfileloadexception.cxx; path = "../../ios-device/sfx2/source/doc/exoticfileloadexception.cxx"; sourceTree = "<group>"; };
- BE93D451216D5580007A39F4 /* docfac.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfac.cxx; path = "../../ios-device/sfx2/source/doc/docfac.cxx"; sourceTree = "<group>"; };
- BE93D452216D5580007A39F4 /* doctempl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctempl.cxx; path = "../../ios-device/sfx2/source/doc/doctempl.cxx"; sourceTree = "<group>"; };
- BE93D453216D5580007A39F4 /* docinf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docinf.cxx; path = "../../ios-device/sfx2/source/doc/docinf.cxx"; sourceTree = "<group>"; };
- BE93D454216D5580007A39F4 /* ownsubfilterservice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ownsubfilterservice.cxx; path = "../../ios-device/sfx2/source/doc/ownsubfilterservice.cxx"; sourceTree = "<group>"; };
- BE93D455216D5580007A39F4 /* objmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objmisc.cxx; path = "../../ios-device/sfx2/source/doc/objmisc.cxx"; sourceTree = "<group>"; };
- BE93D456216D5581007A39F4 /* DocumentMetadataAccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DocumentMetadataAccess.cxx; path = "../../ios-device/sfx2/source/doc/DocumentMetadataAccess.cxx"; sourceTree = "<group>"; };
- BE93D457216D5581007A39F4 /* frmdescr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmdescr.cxx; path = "../../ios-device/sfx2/source/doc/frmdescr.cxx"; sourceTree = "<group>"; };
- BE93D458216D5581007A39F4 /* docstoragemodifylistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docstoragemodifylistener.cxx; path = "../../ios-device/sfx2/source/doc/docstoragemodifylistener.cxx"; sourceTree = "<group>"; };
- BE93D459216D5581007A39F4 /* objcont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objcont.cxx; path = "../../ios-device/sfx2/source/doc/objcont.cxx"; sourceTree = "<group>"; };
- BE93D45A216D5581007A39F4 /* guisaveas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = guisaveas.cxx; path = "../../ios-device/sfx2/source/doc/guisaveas.cxx"; sourceTree = "<group>"; };
- BE93D45B216D5581007A39F4 /* doctemplateslocal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctemplateslocal.cxx; path = "../../ios-device/sfx2/source/doc/doctemplateslocal.cxx"; sourceTree = "<group>"; };
- BE93D45C216D5581007A39F4 /* objserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objserv.cxx; path = "../../ios-device/sfx2/source/doc/objserv.cxx"; sourceTree = "<group>"; };
- BE93D45D216D5581007A39F4 /* objxtor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objxtor.cxx; path = "../../ios-device/sfx2/source/doc/objxtor.cxx"; sourceTree = "<group>"; };
- BE93D45E216D5581007A39F4 /* QuerySaveDocument.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = QuerySaveDocument.cxx; path = "../../ios-device/sfx2/source/doc/QuerySaveDocument.cxx"; sourceTree = "<group>"; };
- BE93D45F216D5581007A39F4 /* docundomanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docundomanager.cxx; path = "../../ios-device/sfx2/source/doc/docundomanager.cxx"; sourceTree = "<group>"; };
- BE93D460216D5581007A39F4 /* objstor.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = objstor.hxx; path = "../../ios-device/sfx2/source/doc/objstor.hxx"; sourceTree = "<group>"; };
- BE93D461216D5581007A39F4 /* sfxmodelfactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxmodelfactory.cxx; path = "../../ios-device/sfx2/source/doc/sfxmodelfactory.cxx"; sourceTree = "<group>"; };
- BE93D462216D5581007A39F4 /* graphhelp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = graphhelp.hxx; path = "../../ios-device/sfx2/source/doc/graphhelp.hxx"; sourceTree = "<group>"; };
- BE93D463216D5581007A39F4 /* syspath.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = syspath.hxx; path = "../../ios-device/sfx2/source/doc/syspath.hxx"; sourceTree = "<group>"; };
- BE93D464216D5581007A39F4 /* doctemplates.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctemplates.cxx; path = "../../ios-device/sfx2/source/doc/doctemplates.cxx"; sourceTree = "<group>"; };
- BE93D465216D5581007A39F4 /* syspathw32.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syspathw32.cxx; path = "../../ios-device/sfx2/source/doc/syspathw32.cxx"; sourceTree = "<group>"; };
- BE93D466216D5581007A39F4 /* oleprops.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = oleprops.cxx; path = "../../ios-device/sfx2/source/doc/oleprops.cxx"; sourceTree = "<group>"; };
- BE93D467216D5581007A39F4 /* iframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iframe.cxx; path = "../../ios-device/sfx2/source/doc/iframe.cxx"; sourceTree = "<group>"; };
- BE93D468216D5581007A39F4 /* objitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objitem.cxx; path = "../../ios-device/sfx2/source/doc/objitem.cxx"; sourceTree = "<group>"; };
- BE93D469216D5582007A39F4 /* printhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printhelper.cxx; path = "../../ios-device/sfx2/source/doc/printhelper.cxx"; sourceTree = "<group>"; };
- BE93D46A216D5582007A39F4 /* watermarkitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = watermarkitem.cxx; path = "../../ios-device/sfx2/source/doc/watermarkitem.cxx"; sourceTree = "<group>"; };
- BE93D46B216D5582007A39F4 /* new.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = new.cxx; path = "../../ios-device/sfx2/source/doc/new.cxx"; sourceTree = "<group>"; };
- BE93D46C216D5582007A39F4 /* objembed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objembed.cxx; path = "../../ios-device/sfx2/source/doc/objembed.cxx"; sourceTree = "<group>"; };
+ BE93D422216CAA7A007A39F4 /* unohelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp.cxx; path = "../losrcdir-symlink/vcl/source/app/unohelp.cxx"; sourceTree = "<group>"; };
+ BE93D423216CAA7A007A39F4 /* stdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdtext.cxx; path = "../losrcdir-symlink/vcl/source/app/stdtext.cxx"; sourceTree = "<group>"; };
+ BE93D424216CAA7A007A39F4 /* session.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = session.cxx; path = "../losrcdir-symlink/vcl/source/app/session.cxx"; sourceTree = "<group>"; };
+ BE93D425216CAA7A007A39F4 /* svmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmain.cxx; path = "../losrcdir-symlink/vcl/source/app/svmain.cxx"; sourceTree = "<group>"; };
+ BE93D426216CAA7A007A39F4 /* help.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = help.cxx; path = "../losrcdir-symlink/vcl/source/app/help.cxx"; sourceTree = "<group>"; };
+ BE93D427216CAA7A007A39F4 /* i18nhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = i18nhelp.cxx; path = "../losrcdir-symlink/vcl/source/app/i18nhelp.cxx"; sourceTree = "<group>"; };
+ BE93D428216CAA7A007A39F4 /* vclevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclevent.cxx; path = "../losrcdir-symlink/vcl/source/app/vclevent.cxx"; sourceTree = "<group>"; };
+ BE93D429216CAA7A007A39F4 /* brand.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brand.cxx; path = "../losrcdir-symlink/vcl/source/app/brand.cxx"; sourceTree = "<group>"; };
+ BE93D42A216CAA7A007A39F4 /* IconThemeInfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeInfo.cxx; path = "../losrcdir-symlink/vcl/source/app/IconThemeInfo.cxx"; sourceTree = "<group>"; };
+ BE93D42B216CAA7A007A39F4 /* salusereventlist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salusereventlist.cxx; path = "../losrcdir-symlink/vcl/source/app/salusereventlist.cxx"; sourceTree = "<group>"; };
+ BE93D42C216CAA7A007A39F4 /* salplug.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salplug.cxx; path = "../losrcdir-symlink/vcl/source/app/salplug.cxx"; sourceTree = "<group>"; };
+ BE93D42D216CAA7A007A39F4 /* unohelp2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp2.cxx; path = "../losrcdir-symlink/vcl/source/app/unohelp2.cxx"; sourceTree = "<group>"; };
+ BE93D42E216CAA7A007A39F4 /* IconThemeSelector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeSelector.cxx; path = "../losrcdir-symlink/vcl/source/app/IconThemeSelector.cxx"; sourceTree = "<group>"; };
+ BE93D42F216CAA7A007A39F4 /* settings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cxx; path = "../losrcdir-symlink/vcl/source/app/settings.cxx"; sourceTree = "<group>"; };
+ BE93D430216CAA7A007A39F4 /* svapp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svapp.cxx; path = "../losrcdir-symlink/vcl/source/app/svapp.cxx"; sourceTree = "<group>"; };
+ BE93D431216CAA7A007A39F4 /* customweld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customweld.cxx; path = "../losrcdir-symlink/vcl/source/app/customweld.cxx"; sourceTree = "<group>"; };
+ BE93D432216CAA7A007A39F4 /* ITiledRenderable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ITiledRenderable.cxx; path = "../losrcdir-symlink/vcl/source/app/ITiledRenderable.cxx"; sourceTree = "<group>"; };
+ BE93D433216CAA7A007A39F4 /* timer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cxx; path = "../losrcdir-symlink/vcl/source/app/timer.cxx"; sourceTree = "<group>"; };
+ BE93D434216CAA7A007A39F4 /* sound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cxx; path = "../losrcdir-symlink/vcl/source/app/sound.cxx"; sourceTree = "<group>"; };
+ BE93D435216CAA7A007A39F4 /* dbggui.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbggui.cxx; path = "../losrcdir-symlink/vcl/source/app/dbggui.cxx"; sourceTree = "<group>"; };
+ BE93D436216CAA7A007A39F4 /* idle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = idle.cxx; path = "../losrcdir-symlink/vcl/source/app/idle.cxx"; sourceTree = "<group>"; };
+ BE93D437216CAA7A007A39F4 /* scheduler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scheduler.cxx; path = "../losrcdir-symlink/vcl/source/app/scheduler.cxx"; sourceTree = "<group>"; };
+ BE93D438216CAA7A007A39F4 /* dndhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndhelp.cxx; path = "../losrcdir-symlink/vcl/source/app/dndhelp.cxx"; sourceTree = "<group>"; };
+ BE93D439216CAA7B007A39F4 /* salvtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvtables.cxx; path = "../losrcdir-symlink/vcl/source/app/salvtables.cxx"; sourceTree = "<group>"; };
+ BE93D43A216CAA7B007A39F4 /* IconThemeScanner.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeScanner.cxx; path = "../losrcdir-symlink/vcl/source/app/IconThemeScanner.cxx"; sourceTree = "<group>"; };
+ BE93D43B216CAA7B007A39F4 /* svdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdata.cxx; path = "../losrcdir-symlink/vcl/source/app/svdata.cxx"; sourceTree = "<group>"; };
+ BE93D43E216D5580007A39F4 /* zoomitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zoomitem.cxx; path = "../losrcdir-symlink/sfx2/source/doc/zoomitem.cxx"; sourceTree = "<group>"; };
+ BE93D43F216D5580007A39F4 /* printhelper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = printhelper.hxx; path = "../losrcdir-symlink/sfx2/source/doc/printhelper.hxx"; sourceTree = "<group>"; };
+ BE93D440216D5580007A39F4 /* Metadatable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Metadatable.cxx; path = "../losrcdir-symlink/sfx2/source/doc/Metadatable.cxx"; sourceTree = "<group>"; };
+ BE93D441216D5580007A39F4 /* docfilt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfilt.cxx; path = "../losrcdir-symlink/sfx2/source/doc/docfilt.cxx"; sourceTree = "<group>"; };
+ BE93D442216D5580007A39F4 /* docfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfile.cxx; path = "../losrcdir-symlink/sfx2/source/doc/docfile.cxx"; sourceTree = "<group>"; };
+ BE93D443216D5580007A39F4 /* oleprops.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = oleprops.hxx; path = "../losrcdir-symlink/sfx2/source/doc/oleprops.hxx"; sourceTree = "<group>"; };
+ BE93D444216D5580007A39F4 /* graphhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphhelp.cxx; path = "../losrcdir-symlink/sfx2/source/doc/graphhelp.cxx"; sourceTree = "<group>"; };
+ BE93D445216D5580007A39F4 /* saveastemplatedlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = saveastemplatedlg.cxx; path = "../losrcdir-symlink/sfx2/source/doc/saveastemplatedlg.cxx"; sourceTree = "<group>"; };
+ BE93D446216D5580007A39F4 /* objstor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objstor.cxx; path = "../losrcdir-symlink/sfx2/source/doc/objstor.cxx"; sourceTree = "<group>"; };
+ BE93D447216D5580007A39F4 /* docmacromode.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docmacromode.cxx; path = "../losrcdir-symlink/sfx2/source/doc/docmacromode.cxx"; sourceTree = "<group>"; };
+ BE93D448216D5580007A39F4 /* sfxbasemodel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxbasemodel.cxx; path = "../losrcdir-symlink/sfx2/source/doc/sfxbasemodel.cxx"; sourceTree = "<group>"; };
+ BE93D449216D5580007A39F4 /* doctemplateslocal.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = doctemplateslocal.hxx; path = "../losrcdir-symlink/sfx2/source/doc/doctemplateslocal.hxx"; sourceTree = "<group>"; };
+ BE93D44A216D5580007A39F4 /* SfxDocumentMetaData.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SfxDocumentMetaData.cxx; path = "../losrcdir-symlink/sfx2/source/doc/SfxDocumentMetaData.cxx"; sourceTree = "<group>"; };
+ BE93D44B216D5580007A39F4 /* templatedlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatedlg.cxx; path = "../losrcdir-symlink/sfx2/source/doc/templatedlg.cxx"; sourceTree = "<group>"; };
+ BE93D44C216D5580007A39F4 /* docinsert.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docinsert.cxx; path = "../losrcdir-symlink/sfx2/source/doc/docinsert.cxx"; sourceTree = "<group>"; };
+ BE93D44D216D5580007A39F4 /* syspathw32.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = syspathw32.hxx; path = "../losrcdir-symlink/sfx2/source/doc/syspathw32.hxx"; sourceTree = "<group>"; };
+ BE93D44E216D5580007A39F4 /* exoticfileloadexception.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = exoticfileloadexception.hxx; path = "../losrcdir-symlink/sfx2/source/doc/exoticfileloadexception.hxx"; sourceTree = "<group>"; };
+ BE93D44F216D5580007A39F4 /* syspath.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syspath.cxx; path = "../losrcdir-symlink/sfx2/source/doc/syspath.cxx"; sourceTree = "<group>"; };
+ BE93D450216D5580007A39F4 /* exoticfileloadexception.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = exoticfileloadexception.cxx; path = "../losrcdir-symlink/sfx2/source/doc/exoticfileloadexception.cxx"; sourceTree = "<group>"; };
+ BE93D451216D5580007A39F4 /* docfac.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfac.cxx; path = "../losrcdir-symlink/sfx2/source/doc/docfac.cxx"; sourceTree = "<group>"; };
+ BE93D452216D5580007A39F4 /* doctempl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctempl.cxx; path = "../losrcdir-symlink/sfx2/source/doc/doctempl.cxx"; sourceTree = "<group>"; };
+ BE93D453216D5580007A39F4 /* docinf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docinf.cxx; path = "../losrcdir-symlink/sfx2/source/doc/docinf.cxx"; sourceTree = "<group>"; };
+ BE93D454216D5580007A39F4 /* ownsubfilterservice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ownsubfilterservice.cxx; path = "../losrcdir-symlink/sfx2/source/doc/ownsubfilterservice.cxx"; sourceTree = "<group>"; };
+ BE93D455216D5580007A39F4 /* objmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objmisc.cxx; path = "../losrcdir-symlink/sfx2/source/doc/objmisc.cxx"; sourceTree = "<group>"; };
+ BE93D456216D5581007A39F4 /* DocumentMetadataAccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DocumentMetadataAccess.cxx; path = "../losrcdir-symlink/sfx2/source/doc/DocumentMetadataAccess.cxx"; sourceTree = "<group>"; };
+ BE93D457216D5581007A39F4 /* frmdescr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmdescr.cxx; path = "../losrcdir-symlink/sfx2/source/doc/frmdescr.cxx"; sourceTree = "<group>"; };
+ BE93D458216D5581007A39F4 /* docstoragemodifylistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docstoragemodifylistener.cxx; path = "../losrcdir-symlink/sfx2/source/doc/docstoragemodifylistener.cxx"; sourceTree = "<group>"; };
+ BE93D459216D5581007A39F4 /* objcont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objcont.cxx; path = "../losrcdir-symlink/sfx2/source/doc/objcont.cxx"; sourceTree = "<group>"; };
+ BE93D45A216D5581007A39F4 /* guisaveas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = guisaveas.cxx; path = "../losrcdir-symlink/sfx2/source/doc/guisaveas.cxx"; sourceTree = "<group>"; };
+ BE93D45B216D5581007A39F4 /* doctemplateslocal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctemplateslocal.cxx; path = "../losrcdir-symlink/sfx2/source/doc/doctemplateslocal.cxx"; sourceTree = "<group>"; };
+ BE93D45C216D5581007A39F4 /* objserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objserv.cxx; path = "../losrcdir-symlink/sfx2/source/doc/objserv.cxx"; sourceTree = "<group>"; };
+ BE93D45D216D5581007A39F4 /* objxtor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objxtor.cxx; path = "../losrcdir-symlink/sfx2/source/doc/objxtor.cxx"; sourceTree = "<group>"; };
+ BE93D45E216D5581007A39F4 /* QuerySaveDocument.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = QuerySaveDocument.cxx; path = "../losrcdir-symlink/sfx2/source/doc/QuerySaveDocument.cxx"; sourceTree = "<group>"; };
+ BE93D45F216D5581007A39F4 /* docundomanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docundomanager.cxx; path = "../losrcdir-symlink/sfx2/source/doc/docundomanager.cxx"; sourceTree = "<group>"; };
+ BE93D460216D5581007A39F4 /* objstor.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = objstor.hxx; path = "../losrcdir-symlink/sfx2/source/doc/objstor.hxx"; sourceTree = "<group>"; };
+ BE93D461216D5581007A39F4 /* sfxmodelfactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxmodelfactory.cxx; path = "../losrcdir-symlink/sfx2/source/doc/sfxmodelfactory.cxx"; sourceTree = "<group>"; };
+ BE93D462216D5581007A39F4 /* graphhelp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = graphhelp.hxx; path = "../losrcdir-symlink/sfx2/source/doc/graphhelp.hxx"; sourceTree = "<group>"; };
+ BE93D463216D5581007A39F4 /* syspath.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = syspath.hxx; path = "../losrcdir-symlink/sfx2/source/doc/syspath.hxx"; sourceTree = "<group>"; };
+ BE93D464216D5581007A39F4 /* doctemplates.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctemplates.cxx; path = "../losrcdir-symlink/sfx2/source/doc/doctemplates.cxx"; sourceTree = "<group>"; };
+ BE93D465216D5581007A39F4 /* syspathw32.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syspathw32.cxx; path = "../losrcdir-symlink/sfx2/source/doc/syspathw32.cxx"; sourceTree = "<group>"; };
+ BE93D466216D5581007A39F4 /* oleprops.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = oleprops.cxx; path = "../losrcdir-symlink/sfx2/source/doc/oleprops.cxx"; sourceTree = "<group>"; };
+ BE93D467216D5581007A39F4 /* iframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iframe.cxx; path = "../losrcdir-symlink/sfx2/source/doc/iframe.cxx"; sourceTree = "<group>"; };
+ BE93D468216D5581007A39F4 /* objitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objitem.cxx; path = "../losrcdir-symlink/sfx2/source/doc/objitem.cxx"; sourceTree = "<group>"; };
+ BE93D469216D5582007A39F4 /* printhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printhelper.cxx; path = "../losrcdir-symlink/sfx2/source/doc/printhelper.cxx"; sourceTree = "<group>"; };
+ BE93D46A216D5582007A39F4 /* watermarkitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = watermarkitem.cxx; path = "../losrcdir-symlink/sfx2/source/doc/watermarkitem.cxx"; sourceTree = "<group>"; };
+ BE93D46B216D5582007A39F4 /* new.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = new.cxx; path = "../losrcdir-symlink/sfx2/source/doc/new.cxx"; sourceTree = "<group>"; };
+ BE93D46C216D5582007A39F4 /* objembed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objembed.cxx; path = "../losrcdir-symlink/sfx2/source/doc/objembed.cxx"; sourceTree = "<group>"; };
BEA2835521467FDD00848631 /* Kit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Kit.cpp; sourceTree = "<group>"; };
BEA283572146945500848631 /* ChildSession.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ChildSession.cpp; sourceTree = "<group>"; };
BEA2835921470A1C00848631 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
@@ -264,57 +264,57 @@
BEA2835F214ACA8500848631 /* FakeSocket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FakeSocket.cpp; sourceTree = "<group>"; };
BEA28376214FFD8C00848631 /* Unit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Unit.cpp; sourceTree = "<group>"; };
BEA283782150172600848631 /* Unit.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Unit.hpp; sourceTree = "<group>"; };
- BEB6521C216F5D8B00B8C09A /* file_path_helper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_path_helper.hxx; path = "../../ios-device/sal/osl/unx/file_path_helper.hxx"; sourceTree = "<group>"; };
- BEB6521D216F5D8B00B8C09A /* file_error_transl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_error_transl.hxx; path = "../../ios-device/sal/osl/unx/file_error_transl.hxx"; sourceTree = "<group>"; };
- BEB6521E216F5D8B00B8C09A /* nlsupport.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = nlsupport.hxx; path = "../../ios-device/sal/osl/unx/nlsupport.hxx"; sourceTree = "<group>"; };
- BEB6521F216F5D8B00B8C09A /* createfilehandlefromfd.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = createfilehandlefromfd.hxx; path = "../../ios-device/sal/osl/unx/createfilehandlefromfd.hxx"; sourceTree = "<group>"; };
- BEB65220216F5D8B00B8C09A /* sockimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = sockimpl.hxx; path = "../../ios-device/sal/osl/unx/sockimpl.hxx"; sourceTree = "<group>"; };
- BEB65221216F5D8B00B8C09A /* file_error_transl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_error_transl.cxx; path = "../../ios-device/sal/osl/unx/file_error_transl.cxx"; sourceTree = "<group>"; };
- BEB65222216F5D8B00B8C09A /* system.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = system.hxx; path = "../../ios-device/sal/osl/unx/system.hxx"; sourceTree = "<group>"; };
- BEB65223216F5D8B00B8C09A /* backtrace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = backtrace.h; path = "../../ios-device/sal/osl/unx/backtrace.h"; sourceTree = "<group>"; };
- BEB65224216F5D8B00B8C09A /* file_url.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_url.hxx; path = "../../ios-device/sal/osl/unx/file_url.hxx"; sourceTree = "<group>"; };
- BEB65225216F5D8B00B8C09A /* file_volume.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_volume.cxx; path = "../../ios-device/sal/osl/unx/file_volume.cxx"; sourceTree = "<group>"; };
- BEB65226216F5D8B00B8C09A /* mutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mutex.cxx; path = "../../ios-device/sal/osl/unx/mutex.cxx"; sourceTree = "<group>"; };
- BEB65227216F5D8B00B8C09A /* security.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = security.cxx; path = "../../ios-device/sal/osl/unx/security.cxx"; sourceTree = "<group>"; };
- BEB65228216F5D8B00B8C09A /* memory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = memory.cxx; path = "../../ios-device/sal/osl/unx/memory.cxx"; sourceTree = "<group>"; };
- BEB65229216F5D8B00B8C09A /* system.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = system.cxx; path = "../../ios-device/sal/osl/unx/system.cxx"; sourceTree = "<group>"; };
- BEB6522A216F5D8B00B8C09A /* file_misc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_misc.cxx; path = "../../ios-device/sal/osl/unx/file_misc.cxx"; sourceTree = "<group>"; };
- BEB6522B216F5D8B00B8C09A /* thread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thread.cxx; path = "../../ios-device/sal/osl/unx/thread.cxx"; sourceTree = "<group>"; };
- BEB6522C216F5D8B00B8C09A /* signal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = signal.cxx; path = "../../ios-device/sal/osl/unx/signal.cxx"; sourceTree = "<group>"; };
- BEB6522D216F5D8C00B8C09A /* secimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = secimpl.hxx; path = "../../ios-device/sal/osl/unx/secimpl.hxx"; sourceTree = "<group>"; };
- BEB6522E216F5D8C00B8C09A /* profile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profile.cxx; path = "../../ios-device/sal/osl/unx/profile.cxx"; sourceTree = "<group>"; };
- BEB6522F216F5D8C00B8C09A /* system.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = system.mm; path = "../../ios-device/sal/osl/unx/system.mm"; sourceTree = "<group>"; };
- BEB65230216F5D8C00B8C09A /* backtrace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = backtrace.c; path = "../../ios-device/sal/osl/unx/backtrace.c"; sourceTree = "<group>"; };
- BEB65231216F5D8C00B8C09A /* file_path_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_path_helper.cxx; path = "../../ios-device/sal/osl/unx/file_path_helper.cxx"; sourceTree = "<group>"; };
- BEB65232216F5D8C00B8C09A /* process_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process_impl.cxx; path = "../../ios-device/sal/osl/unx/process_impl.cxx"; sourceTree = "<group>"; };
- BEB65233216F5D8C00B8C09A /* file_impl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_impl.hxx; path = "../../ios-device/sal/osl/unx/file_impl.hxx"; sourceTree = "<group>"; };
- BEB65234216F5D8C00B8C09A /* socket.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socket.cxx; path = "../../ios-device/sal/osl/unx/socket.cxx"; sourceTree = "<group>"; };
- BEB65235216F5D8C00B8C09A /* readwrite_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = readwrite_helper.cxx; path = "../../ios-device/sal/osl/unx/readwrite_helper.cxx"; sourceTree = "<group>"; };
- BEB65236216F5D8C00B8C09A /* osxlocale.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = osxlocale.cxx; path = "../../ios-device/sal/osl/unx/osxlocale.cxx"; sourceTree = "<group>"; };
- BEB65237216F5D8C00B8C09A /* file_stat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_stat.cxx; path = "../../ios-device/sal/osl/unx/file_stat.cxx"; sourceTree = "<group>"; };
- BEB65238216F5D8C00B8C09A /* file.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file.cxx; path = "../../ios-device/sal/osl/unx/file.cxx"; sourceTree = "<group>"; };
- BEB65239216F5D8C00B8C09A /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = "../../ios-device/sal/osl/unx/module.cxx"; sourceTree = "<group>"; };
- BEB6523A216F5D8C00B8C09A /* pipe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pipe.cxx; path = "../../ios-device/sal/osl/unx/pipe.cxx"; sourceTree = "<group>"; };
- BEB6523B216F5D8C00B8C09A /* readwrite_helper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = readwrite_helper.hxx; path = "../../ios-device/sal/osl/unx/readwrite_helper.hxx"; sourceTree = "<group>"; };
- BEB6523C216F5D8C00B8C09A /* salinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salinit.cxx; path = "../../ios-device/sal/osl/unx/salinit.cxx"; sourceTree = "<group>"; };
- BEB6523D216F5D8C00B8C09A /* file_url.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_url.cxx; path = "../../ios-device/sal/osl/unx/file_url.cxx"; sourceTree = "<group>"; };
- BEB6523E216F5D8C00B8C09A /* backtraceapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = backtraceapi.cxx; path = "../../ios-device/sal/osl/unx/backtraceapi.cxx"; sourceTree = "<group>"; };
- BEB6523F216F5D8C00B8C09A /* interlck.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interlck.cxx; path = "../../ios-device/sal/osl/unx/interlck.cxx"; sourceTree = "<group>"; };
- BEB65240216F5D8C00B8C09A /* random.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = random.cxx; path = "../../ios-device/sal/osl/unx/random.cxx"; sourceTree = "<group>"; };
- BEB65241216F5D8C00B8C09A /* tempfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tempfile.cxx; path = "../../ios-device/sal/osl/unx/tempfile.cxx"; sourceTree = "<group>"; };
- BEB65242216F5D8C00B8C09A /* uunxapi.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = uunxapi.hxx; path = "../../ios-device/sal/osl/unx/uunxapi.hxx"; sourceTree = "<group>"; };
- BEB65243216F5D8C00B8C09A /* conditn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = conditn.cxx; path = "../../ios-device/sal/osl/unx/conditn.cxx"; sourceTree = "<group>"; };
- BEB65244216F5D8C00B8C09A /* asm */ = {isa = PBXFileReference; lastKnownFileType = folder; name = asm; path = "../../ios-device/sal/osl/unx/asm"; sourceTree = "<group>"; };
- BEB65245216F5D8C00B8C09A /* uunxapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uunxapi.cxx; path = "../../ios-device/sal/osl/unx/uunxapi.cxx"; sourceTree = "<group>"; };
- BEB65246216F5D8D00B8C09A /* time.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = time.cxx; path = "../../ios-device/sal/osl/unx/time.cxx"; sourceTree = "<group>"; };
- BEB65247216F5D8D00B8C09A /* uunxapi.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = uunxapi.mm; path = "../../ios-device/sal/osl/unx/uunxapi.mm"; sourceTree = "<group>"; };
- BEB65248216F5D8D00B8C09A /* process.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cxx; path = "../../ios-device/sal/osl/unx/process.cxx"; sourceTree = "<group>"; };
- BEB65249216F5D8D00B8C09A /* saltime.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = saltime.hxx; path = "../../ios-device/sal/osl/unx/saltime.hxx"; sourceTree = "<group>"; };
- BEB6524A216F5D8D00B8C09A /* nlsupport.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nlsupport.cxx; path = "../../ios-device/sal/osl/unx/nlsupport.cxx"; sourceTree = "<group>"; };
- BEB6524D216FD0CA00B8C09A /* vcompat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vcompat.cxx; path = "../../ios-device/tools/source/stream/vcompat.cxx"; sourceTree = "<group>"; };
- BEB6524E216FD0CA00B8C09A /* stream.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cxx; path = "../../ios-device/tools/source/stream/stream.cxx"; sourceTree = "<group>"; };
- BEB6524F216FD0CA00B8C09A /* strmwnt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strmwnt.cxx; path = "../../ios-device/tools/source/stream/strmwnt.cxx"; sourceTree = "<group>"; };
- BEB65250216FD0CA00B8C09A /* strmunx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strmunx.cxx; path = "../../ios-device/tools/source/stream/strmunx.cxx"; sourceTree = "<group>"; };
+ BEB6521C216F5D8B00B8C09A /* file_path_helper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_path_helper.hxx; path = "../losrcdir-symlink/sal/osl/unx/file_path_helper.hxx"; sourceTree = "<group>"; };
+ BEB6521D216F5D8B00B8C09A /* file_error_transl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_error_transl.hxx; path = "../losrcdir-symlink/sal/osl/unx/file_error_transl.hxx"; sourceTree = "<group>"; };
+ BEB6521E216F5D8B00B8C09A /* nlsupport.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = nlsupport.hxx; path = "../losrcdir-symlink/sal/osl/unx/nlsupport.hxx"; sourceTree = "<group>"; };
+ BEB6521F216F5D8B00B8C09A /* createfilehandlefromfd.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = createfilehandlefromfd.hxx; path = "../losrcdir-symlink/sal/osl/unx/createfilehandlefromfd.hxx"; sourceTree = "<group>"; };
+ BEB65220216F5D8B00B8C09A /* sockimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = sockimpl.hxx; path = "../losrcdir-symlink/sal/osl/unx/sockimpl.hxx"; sourceTree = "<group>"; };
+ BEB65221216F5D8B00B8C09A /* file_error_transl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_error_transl.cxx; path = "../losrcdir-symlink/sal/osl/unx/file_error_transl.cxx"; sourceTree = "<group>"; };
+ BEB65222216F5D8B00B8C09A /* system.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = system.hxx; path = "../losrcdir-symlink/sal/osl/unx/system.hxx"; sourceTree = "<group>"; };
+ BEB65223216F5D8B00B8C09A /* backtrace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = backtrace.h; path = "../losrcdir-symlink/sal/osl/unx/backtrace.h"; sourceTree = "<group>"; };
+ BEB65224216F5D8B00B8C09A /* file_url.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_url.hxx; path = "../losrcdir-symlink/sal/osl/unx/file_url.hxx"; sourceTree = "<group>"; };
+ BEB65225216F5D8B00B8C09A /* file_volume.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_volume.cxx; path = "../losrcdir-symlink/sal/osl/unx/file_volume.cxx"; sourceTree = "<group>"; };
+ BEB65226216F5D8B00B8C09A /* mutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mutex.cxx; path = "../losrcdir-symlink/sal/osl/unx/mutex.cxx"; sourceTree = "<group>"; };
+ BEB65227216F5D8B00B8C09A /* security.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = security.cxx; path = "../losrcdir-symlink/sal/osl/unx/security.cxx"; sourceTree = "<group>"; };
+ BEB65228216F5D8B00B8C09A /* memory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = memory.cxx; path = "../losrcdir-symlink/sal/osl/unx/memory.cxx"; sourceTree = "<group>"; };
+ BEB65229216F5D8B00B8C09A /* system.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = system.cxx; path = "../losrcdir-symlink/sal/osl/unx/system.cxx"; sourceTree = "<group>"; };
+ BEB6522A216F5D8B00B8C09A /* file_misc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_misc.cxx; path = "../losrcdir-symlink/sal/osl/unx/file_misc.cxx"; sourceTree = "<group>"; };
+ BEB6522B216F5D8B00B8C09A /* thread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thread.cxx; path = "../losrcdir-symlink/sal/osl/unx/thread.cxx"; sourceTree = "<group>"; };
+ BEB6522C216F5D8B00B8C09A /* signal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = signal.cxx; path = "../losrcdir-symlink/sal/osl/unx/signal.cxx"; sourceTree = "<group>"; };
+ BEB6522D216F5D8C00B8C09A /* secimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = secimpl.hxx; path = "../losrcdir-symlink/sal/osl/unx/secimpl.hxx"; sourceTree = "<group>"; };
+ BEB6522E216F5D8C00B8C09A /* profile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profile.cxx; path = "../losrcdir-symlink/sal/osl/unx/profile.cxx"; sourceTree = "<group>"; };
+ BEB6522F216F5D8C00B8C09A /* system.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = system.mm; path = "../losrcdir-symlink/sal/osl/unx/system.mm"; sourceTree = "<group>"; };
+ BEB65230216F5D8C00B8C09A /* backtrace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = backtrace.c; path = "../losrcdir-symlink/sal/osl/unx/backtrace.c"; sourceTree = "<group>"; };
+ BEB65231216F5D8C00B8C09A /* file_path_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_path_helper.cxx; path = "../losrcdir-symlink/sal/osl/unx/file_path_helper.cxx"; sourceTree = "<group>"; };
+ BEB65232216F5D8C00B8C09A /* process_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process_impl.cxx; path = "../losrcdir-symlink/sal/osl/unx/process_impl.cxx"; sourceTree = "<group>"; };
+ BEB65233216F5D8C00B8C09A /* file_impl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_impl.hxx; path = "../losrcdir-symlink/sal/osl/unx/file_impl.hxx"; sourceTree = "<group>"; };
+ BEB65234216F5D8C00B8C09A /* socket.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socket.cxx; path = "../losrcdir-symlink/sal/osl/unx/socket.cxx"; sourceTree = "<group>"; };
+ BEB65235216F5D8C00B8C09A /* readwrite_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = readwrite_helper.cxx; path = "../losrcdir-symlink/sal/osl/unx/readwrite_helper.cxx"; sourceTree = "<group>"; };
+ BEB65236216F5D8C00B8C09A /* osxlocale.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = osxlocale.cxx; path = "../losrcdir-symlink/sal/osl/unx/osxlocale.cxx"; sourceTree = "<group>"; };
+ BEB65237216F5D8C00B8C09A /* file_stat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_stat.cxx; path = "../losrcdir-symlink/sal/osl/unx/file_stat.cxx"; sourceTree = "<group>"; };
+ BEB65238216F5D8C00B8C09A /* file.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file.cxx; path = "../losrcdir-symlink/sal/osl/unx/file.cxx"; sourceTree = "<group>"; };
+ BEB65239216F5D8C00B8C09A /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = "../losrcdir-symlink/sal/osl/unx/module.cxx"; sourceTree = "<group>"; };
+ BEB6523A216F5D8C00B8C09A /* pipe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pipe.cxx; path = "../losrcdir-symlink/sal/osl/unx/pipe.cxx"; sourceTree = "<group>"; };
+ BEB6523B216F5D8C00B8C09A /* readwrite_helper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = readwrite_helper.hxx; path = "../losrcdir-symlink/sal/osl/unx/readwrite_helper.hxx"; sourceTree = "<group>"; };
+ BEB6523C216F5D8C00B8C09A /* salinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salinit.cxx; path = "../losrcdir-symlink/sal/osl/unx/salinit.cxx"; sourceTree = "<group>"; };
+ BEB6523D216F5D8C00B8C09A /* file_url.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_url.cxx; path = "../losrcdir-symlink/sal/osl/unx/file_url.cxx"; sourceTree = "<group>"; };
+ BEB6523E216F5D8C00B8C09A /* backtraceapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = backtraceapi.cxx; path = "../losrcdir-symlink/sal/osl/unx/backtraceapi.cxx"; sourceTree = "<group>"; };
+ BEB6523F216F5D8C00B8C09A /* interlck.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interlck.cxx; path = "../losrcdir-symlink/sal/osl/unx/interlck.cxx"; sourceTree = "<group>"; };
+ BEB65240216F5D8C00B8C09A /* random.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = random.cxx; path = "../losrcdir-symlink/sal/osl/unx/random.cxx"; sourceTree = "<group>"; };
+ BEB65241216F5D8C00B8C09A /* tempfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tempfile.cxx; path = "../losrcdir-symlink/sal/osl/unx/tempfile.cxx"; sourceTree = "<group>"; };
+ BEB65242216F5D8C00B8C09A /* uunxapi.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = uunxapi.hxx; path = "../losrcdir-symlink/sal/osl/unx/uunxapi.hxx"; sourceTree = "<group>"; };
+ BEB65243216F5D8C00B8C09A /* conditn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = conditn.cxx; path = "../losrcdir-symlink/sal/osl/unx/conditn.cxx"; sourceTree = "<group>"; };
+ BEB65244216F5D8C00B8C09A /* asm */ = {isa = PBXFileReference; lastKnownFileType = folder; name = asm; path = "../losrcdir-symlink/sal/osl/unx/asm"; sourceTree = "<group>"; };
+ BEB65245216F5D8C00B8C09A /* uunxapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uunxapi.cxx; path = "../losrcdir-symlink/sal/osl/unx/uunxapi.cxx"; sourceTree = "<group>"; };
+ BEB65246216F5D8D00B8C09A /* time.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = time.cxx; path = "../losrcdir-symlink/sal/osl/unx/time.cxx"; sourceTree = "<group>"; };
+ BEB65247216F5D8D00B8C09A /* uunxapi.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = uunxapi.mm; path = "../losrcdir-symlink/sal/osl/unx/uunxapi.mm"; sourceTree = "<group>"; };
+ BEB65248216F5D8D00B8C09A /* process.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cxx; path = "../losrcdir-symlink/sal/osl/unx/process.cxx"; sourceTree = "<group>"; };
+ BEB65249216F5D8D00B8C09A /* saltime.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = saltime.hxx; path = "../losrcdir-symlink/sal/osl/unx/saltime.hxx"; sourceTree = "<group>"; };
+ BEB6524A216F5D8D00B8C09A /* nlsupport.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nlsupport.cxx; path = "../losrcdir-symlink/sal/osl/unx/nlsupport.cxx"; sourceTree = "<group>"; };
+ BEB6524D216FD0CA00B8C09A /* vcompat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vcompat.cxx; path = "../losrcdir-symlink/tools/source/stream/vcompat.cxx"; sourceTree = "<group>"; };
+ BEB6524E216FD0CA00B8C09A /* stream.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cxx; path = "../losrcdir-symlink/tools/source/stream/stream.cxx"; sourceTree = "<group>"; };
+ BEB6524F216FD0CA00B8C09A /* strmwnt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strmwnt.cxx; path = "../losrcdir-symlink/tools/source/stream/strmwnt.cxx"; sourceTree = "<group>"; };
+ BEB65250216FD0CA00B8C09A /* strmunx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strmunx.cxx; path = "../losrcdir-symlink/tools/source/stream/strmunx.cxx"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -348,7 +348,7 @@
BE8D85BD214055F2009F1860 /* share */,
BE8D85C1214055F2009F1860 /* udkapi.rdb */,
BE8D85C7214055F3009F1860 /* unorc */,
- BE5EB5DB2140480B00E0826C /* icudt63l.dat */,
+ BE5EB5DB2140480B00E0826C /* ICU.dat */,
BE00F89721396585001CE2D4 /* bundle.css */,
BE00F89921396585001CE2D4 /* bundle.js */,
BE00F89E21396585001CE2D4 /* images */,
@@ -846,7 +846,7 @@
BE8D85C9214055F3009F1860 /* filter in Resources */,
BE8D85CD214055F3009F1860 /* registry in Resources */,
BE00F8A821396585001CE2D4 /* images in Resources */,
- BE5EB5DC2140480B00E0826C /* icudt63l.dat in Resources */,
+ BE5EB5DC2140480B00E0826C /* ICU.dat in Resources */,
BE8D85CE214055F3009F1860 /* oovbaapi.rdb in Resources */,
BE00F8A721396585001CE2D4 /* loleaflet-help.html in Resources */,
BE8D773D2136762600AC58EA /* LaunchScreen.storyboard in Resources */,
@@ -976,12 +976,8 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.4;
- LOBUILDDIR = "$(SOURCE_ROOT)/../../ios-device";
- LOSRCDIR = "$(SOURCE_ROOT)/../../ios-device";
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
- PNGINSTDIR = "/opt/ios-libpng";
- POCOINSTDIR = "/opt/ios-poco";
SDKROOT = iphoneos;
};
name = Debug;
@@ -1032,11 +1028,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.4;
- LOBUILDDIR = "$(SOURCE_ROOT)/../../ios-device";
- LOSRCDIR = "$(SOURCE_ROOT)/../../ios-device";
MTL_ENABLE_DEBUG_INFO = NO;
- PNGINSTDIR = "/opt/ios-libpng";
- POCOINSTDIR = "/opt/ios-poco";
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
@@ -1066,11 +1058,11 @@
"$(SOURCE_ROOT)/../common",
"$(SOURCE_ROOT)/../wsd",
"$(SOURCE_ROOT)/../net",
- "$(LOBUILDDIR)/config_host",
- "$(LOSRCDIR)/include",
- "$(LOBUILDDIR)/workdir/CustomTarget/ios",
- "$(PNGINSTDIR)/include",
- "$(POCOINSTDIR)/include",
+ "$(SOURCE_ROOT)/../lobuilddir-symlink/config_host",
+ "$(SOURCE_ROOT)/../losrcdir-symlink/include",
+ "$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/CustomTarget/ios",
+ "$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/UnpackedTarball/libpng",
+ "$(SOURCE_ROOT)/../pocoinclude-symlink",
);
INFOPLIST_FILE = Mobile/Info.plist;
LD_GENERATE_MAP_FILE = YES;
@@ -1085,11 +1077,9 @@
);
OTHER_LDFLAGS = (
"-filelist",
- "$(LOBUILDDIR)/workdir/CustomTarget/ios/ios-all-static-libs.list",
+ "$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/CustomTarget/ios/ios-all-static-libs.list",
"-L",
- "$(PNGINSTDIR)/lib",
- "-L",
- "$(POCOINSTDIR)/lib",
+ "$(SOURCE_ROOT)/../pocolib-symlink",
"-lPocoFoundationd",
"-lPocoUtild",
"-lPocoXMLd",
@@ -1125,11 +1115,11 @@
"$(SOURCE_ROOT)/../common",
"$(SOURCE_ROOT)/../wsd",
"$(SOURCE_ROOT)/../net",
- "$(LOBUILDDIR)/config_host",
- "$(LOSRCDIR)/include",
- "$(LOBUILDDIR)/workdir/CustomTarget/ios",
- "$(PNGINSTDIR)/include",
- "$(POCOINSTDIR)/include",
+ "$(SOURCE_ROOT)/../lobuilddir-symlink/config_host",
... etc. - the rest is truncated
More information about the Libreoffice-commits
mailing list