diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-15 23:32:04 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-10-16 00:16:58 +0300 |
commit | 389a61ab466b20eee1d854f7c984a1ac673193b9 (patch) | |
tree | eed5ac4f3b060e1320d76eff731690f607f4f6a2 /ios/shared | |
parent | f222e8efcfd290c8fb3a180fd83dde615915d1ef (diff) |
We want config_host, not config_build
We use GNU cross-compilation terminology: "host" means the platform
the code being compiled will run on (this is often somewhat surprising
to those unaware), and "build" means the platform the build tools (=
the compiler, linker etc) is running on.
For an iOS app, "host" is iOS and "build" is OS X.
There is also "target" but it is in this case the same as
"host". (Only in a so-called Canadian Cross situation is "target"
different from "host" (and from "build").)
Change-Id: I6eefa982916f0660afd259770bf455cf28793670
Diffstat (limited to 'ios/shared')
-rw-r--r-- | ios/shared/ios_sharedlo.xcodeproj/project.pbxproj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ios/shared/ios_sharedlo.xcodeproj/project.pbxproj b/ios/shared/ios_sharedlo.xcodeproj/project.pbxproj index 885d1a903b88..aafc896d1f8a 100644 --- a/ios/shared/ios_sharedlo.xcodeproj/project.pbxproj +++ b/ios/shared/ios_sharedlo.xcodeproj/project.pbxproj @@ -479,8 +479,8 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = ( + "$(BUILDDIR)/config_host", ../../include, - "$(BUILDDIR)/config_build", "$(BUILDDIR)/workdir/unxiosr.pro/UnoApiHeadersTarget/udkapi/comprehensive", "$(BUILDDIR)/workdir/unxiosr.pro/UnoApiHeadersTarget/offapi/comprehensive", ); @@ -514,8 +514,8 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = ( + "$(BUILDDIR)/config_host", ../../include, - "$(BUILDDIR)/config_build", "$(BUILDDIR)/workdir/unxiosr.pro/UnoApiHeadersTarget/udkapi/comprehensive", "$(BUILDDIR)/workdir/unxiosr.pro/UnoApiHeadersTarget/offapi/comprehensive", ); |