<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Poco C++ for iPhone之一 &#8211; 编译</title>
	<atom:link href="http://www.iphone-geek.cn/%e7%bc%96%e7%a8%8b/poco-c-for-iphone%e4%b9%8b%e4%b8%80-%e7%bc%96%e8%af%91/feed" rel="self" type="application/rss+xml" />
	<link>http://www.iphone-geek.cn/%e7%bc%96%e7%a8%8b/poco-c-for-iphone%e4%b9%8b%e4%b8%80-%e7%bc%96%e8%af%91</link>
	<description>iPhone 新闻，编程，技巧与提示，代码，教程</description>
	<lastBuildDate>Tue, 07 Feb 2012 09:36:03 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: cloved</title>
		<link>http://www.iphone-geek.cn/%e7%bc%96%e7%a8%8b/poco-c-for-iphone%e4%b9%8b%e4%b8%80-%e7%bc%96%e8%af%91/comment-page-1#comment-331</link>
		<dc:creator>cloved</dc:creator>
		<pubDate>Fri, 29 Oct 2010 16:35:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.iphone-geek.cn/?p=554#comment-331</guid>
		<description>你不能静态链接的原因应该是你编译poco的时候没有设置为MT导致的.否则应该是没有问题的.</description>
		<content:encoded><![CDATA[<p>你不能静态链接的原因应该是你编译poco的时候没有设置为MT导致的.否则应该是没有问题的.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rez</title>
		<link>http://www.iphone-geek.cn/%e7%bc%96%e7%a8%8b/poco-c-for-iphone%e4%b9%8b%e4%b8%80-%e7%bc%96%e8%af%91/comment-page-1#comment-148</link>
		<dc:creator>Rez</dc:creator>
		<pubDate>Sun, 14 Feb 2010 09:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.iphone-geek.cn/?p=554#comment-148</guid>
		<description>Thank you so much again! 

I&#039;ll try to follow your steps and I will give you and update about how it worked. 

Regards!

Rez</description>
		<content:encoded><![CDATA[<p>Thank you so much again! </p>
<p>I&#8217;ll try to follow your steps and I will give you and update about how it worked. </p>
<p>Regards!</p>
<p>Rez</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bagusflyer</title>
		<link>http://www.iphone-geek.cn/%e7%bc%96%e7%a8%8b/poco-c-for-iphone%e4%b9%8b%e4%b8%80-%e7%bc%96%e8%af%91/comment-page-1#comment-147</link>
		<dc:creator>bagusflyer</dc:creator>
		<pubDate>Sat, 13 Feb 2010 02:57:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.iphone-geek.cn/?p=554#comment-147</guid>
		<description>I see. The steps is :

1. Open your Xcode project.
2. Add existing files. Add Poco C++ library i.e. PocoFoundation projects and other projects, for example PocoXml projects.
3. Right click your project Target, and select &quot;Get Info&quot;, then add dependency.
4. Drag .a files for examples PocoFoundation.a and PocoXml.a into &quot;Copy library files&quot;  under your project Target.
5. Add you Poco C++ header file paths to your &quot;Search Path&quot;.

If you still have problem, please send your sample project file to me and I&#039;ll add Poco C++ dependency for you.</description>
		<content:encoded><![CDATA[<p>I see. The steps is :</p>
<p>1. Open your Xcode project.<br />
2. Add existing files. Add Poco C++ library i.e. PocoFoundation projects and other projects, for example PocoXml projects.<br />
3. Right click your project Target, and select &#8220;Get Info&#8221;, then add dependency.<br />
4. Drag .a files for examples PocoFoundation.a and PocoXml.a into &#8220;Copy library files&#8221;  under your project Target.<br />
5. Add you Poco C++ header file paths to your &#8220;Search Path&#8221;.</p>
<p>If you still have problem, please send your sample project file to me and I&#8217;ll add Poco C++ dependency for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rez</title>
		<link>http://www.iphone-geek.cn/%e7%bc%96%e7%a8%8b/poco-c-for-iphone%e4%b9%8b%e4%b8%80-%e7%bc%96%e8%af%91/comment-page-1#comment-146</link>
		<dc:creator>Rez</dc:creator>
		<pubDate>Fri, 12 Feb 2010 09:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.iphone-geek.cn/?p=554#comment-146</guid>
		<description>Hi! Thanks for the answer! I&#039;m just a beginner in Xcode/C++ and maybe I don&#039;t explain myself correctly.  Sorry about that. 

Yes, I checked your Xcode project for Poco C++ and it worked perfect with no errors.

As you said (I understood), there&#039;s a problem linking the libraries binaries and you have to compile POCO as dependency to be included in a xcode project. Am I right?. 

My problem is when I try to do that on an existing OpenFrameworks/Xcode project. I don&#039;t know how to include POCO as depency in a Openframeworks Iphone project. 

Thanks in advance for your time. 

Rez</description>
		<content:encoded><![CDATA[<p>Hi! Thanks for the answer! I&#8217;m just a beginner in Xcode/C++ and maybe I don&#8217;t explain myself correctly.  Sorry about that. </p>
<p>Yes, I checked your Xcode project for Poco C++ and it worked perfect with no errors.</p>
<p>As you said (I understood), there&#8217;s a problem linking the libraries binaries and you have to compile POCO as dependency to be included in a xcode project. Am I right?. </p>
<p>My problem is when I try to do that on an existing OpenFrameworks/Xcode project. I don&#8217;t know how to include POCO as depency in a Openframeworks Iphone project. </p>
<p>Thanks in advance for your time. </p>
<p>Rez</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bagusflyer</title>
		<link>http://www.iphone-geek.cn/%e7%bc%96%e7%a8%8b/poco-c-for-iphone%e4%b9%8b%e4%b8%80-%e7%bc%96%e8%af%91/comment-page-1#comment-145</link>
		<dc:creator>bagusflyer</dc:creator>
		<pubDate>Fri, 12 Feb 2010 02:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.iphone-geek.cn/?p=554#comment-145</guid>
		<description>Sorry, I haven&#039;t tried it with OpenFrameworks. But theoretically it should be no problem at all. 

Have you tried my Xcode project for POCO C++? What are the error messages you have when you&#039;re compiling your code?</description>
		<content:encoded><![CDATA[<p>Sorry, I haven&#8217;t tried it with OpenFrameworks. But theoretically it should be no problem at all. </p>
<p>Have you tried my Xcode project for POCO C++? What are the error messages you have when you&#8217;re compiling your code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rez</title>
		<link>http://www.iphone-geek.cn/%e7%bc%96%e7%a8%8b/poco-c-for-iphone%e4%b9%8b%e4%b8%80-%e7%bc%96%e8%af%91/comment-page-1#comment-144</link>
		<dc:creator>Rez</dc:creator>
		<pubDate>Thu, 11 Feb 2010 12:03:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.iphone-geek.cn/?p=554#comment-144</guid>
		<description>Hi! Awesome work! 
你好！很了不起的作品！

I&#039;ve been trying to include the poco library in a iPhone XCode template for OpenFrameworks but I always get multiple errors.

我已经试着把POCO库文件合并进 iPhone XCODE 用来打开 OpenFrameworks 但是我总是碰到多重错误。

It&#039;s possible to include POCO in a OpenFrameworks iPhone XCode project?
可能把POCO库文件合并进 iPhone XCODE 程序么？

Any answer will be highly appreciated. 

任何回答我都会高兴。

Rez</description>
		<content:encoded><![CDATA[<p>Hi! Awesome work!<br />
你好！很了不起的作品！</p>
<p>I&#8217;ve been trying to include the poco library in a iPhone XCode template for OpenFrameworks but I always get multiple errors.</p>
<p>我已经试着把POCO库文件合并进 iPhone XCODE 用来打开 OpenFrameworks 但是我总是碰到多重错误。</p>
<p>It&#8217;s possible to include POCO in a OpenFrameworks iPhone XCode project?<br />
可能把POCO库文件合并进 iPhone XCODE 程序么？</p>
<p>Any answer will be highly appreciated. </p>
<p>任何回答我都会高兴。</p>
<p>Rez</p>
]]></content:encoded>
	</item>
</channel>
</rss>

