<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[如何在Windows上使用roscpp]]></title><description><![CDATA[<h3>原理说明</h3>
<p dir="auto">基本想法就是把roscpp库编译成dll或者lib的形式，然后项目通过引用对应的链接库文件使用roscpp的功能。<br />
roscpp的代码本身是支持在Windows平台编译的。但是这个库依赖于其他很多ros库。有些库不支持在Windows平台上编译，有些库在Windows平台上编译非常麻烦。所以我们要对相关文件进行修改，删除不必要的依赖就可以编译了。下面是具体的编译方法。</p>
<p dir="auto">如果你不想自己编译相关的库，想要直接使用，那么可以跳到最后，看创建项目使用roscpp的内容。</p>
<h3>安装boost</h3>
<p dir="auto">下载boost库源代码 <a href="https://sourceforge.net/projects/boost/" target="_blank" rel="noopener noreferrer">下载链接</a><br />
注意版本，版本应该是越新越好。我使用的是1.66版本。</p>
<p dir="auto">解压后以管理员身份开启一个powershell窗口，cd到boost源代码目录。然后执行下面指令</p>
<pre><code class="language-powershell">.\bootstrap.bat
.\b2.exe variant=release threading=multi threadapi=win32 link=static runtime-link=shared --prefix=C:\boost address-model=64 architecture=x86 install -j8
.\b2.exe variant=debug threading=multi threadapi=win32 link=static runtime-link=shared --prefix=C:\boost address-model=64 architecture=x86 install -j8
</code></pre>
<p dir="auto">这样程序会在C:/boost文件夹内安装boost库</p>
<h3>安装CMake</h3>
<p dir="auto">下载相关安装包 <a href="https://github.com/Kitware/CMake/releases/download/v3.13.3/cmake-3.13.3-win64-x64.msi" target="_blank" rel="noopener noreferrer">下载地址</a></p>
<p dir="auto">安装完成即可，注意cmake的路径也要添加到系统环境变量里面。</p>
<h3>安装catkin_pkg</h3>
<p dir="auto">如果系统没有安装Python2.7需要先安装Python2.7。并且设置好环境变量把python添加到Path里面去</p>
<p dir="auto">以管理员权限打开一个powershell窗口，然后执行下面的指令</p>
<pre><code>pip install catkin_pkg
</code></pre>
<h3>准备ros工作空间</h3>
<p dir="auto">创建一个文件夹名称随意，这里取为catkin_ws，作为caktin的工作空间。<br />
执行下面指令下载相关源代码</p>
<pre><code class="language-powershell">cd [到你的工作空间]
mkdir src
cd src
git clone https://github.com/ros/catkin
git clone https://github.com/ros/gencpp
git clone https://github.com/jsk-ros-pkg/geneus
git clone https://github.com/ros/genlisp
git clone https://github.com/ros/genmsg
git clone https://github.com/RethinkRobotics-opensource/gennodejs
git clone https://github.com/ros/genpy
git clone https://github.com/ros/message_generation
git clone https://github.com/ros/message_runtime
git clone https://github.com/BluewhaleRobot/rosconsole
git clone https://github.com/BluewhaleRobot/roscpp_core
git clone https://github.com/BluewhaleRobot/ros_comm
git clone https://github.com/ros/ros_comm_msgs
git clone https://github.com/ros/std_msgs
</code></pre>
<h3>编译安装</h3>
<pre><code class="language-powershell">cd [到你的工作空间]
python .\src\catkin\bin\catkin_make
# 此时会提示错误，但是没有关系。这个程序会帮我们创建很多相关文件
cd build
# 把build文件夹内容删除后执行下面的指令
cmake E:\workspace\catkin_ws\src -DCATKIN_DEVEL_PREFIX=E:\workspace\catkin_ws\devel -DCMAKE_INSTALL_PREFIX=E:\workspace\catkin_ws\install -G "Visual Studio 15 2017 Win64" -DCATKIN_ENABLE_TESTING=OFF -DBoost_USE_STATIC_LIBS=ON -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=OFF
# 其中的E:\workspace\catkin_ws\src是我的工作空间相关路径，你要换成自己的对应路径。Visual Studio 15 2017 Win64 为Visual Studio的版本信息，根据自己的Visual Studio版本进行设置。这个指令可以没有错误正常执行。
</code></pre>
<p dir="auto">正常应该会有下面这样的输出</p>
<pre><code class="language-powershell">...
-- ==&gt; add_subdirectory(ros_comm/clients/roscpp)
-- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy
-- Boost version: 1.66.0
-- Found the following Boost libraries:
--   chrono
--   filesystem
--   signals
--   system
-- roscpp: 1 messages, 3 services
-- Configuring done
-- Generating done
-- Build files have been written to: E:/workspace/catkin_ws/build
</code></pre>
<p dir="auto">然后我们就可以开始编译了。还是在build文件夹内，执行下面的指令。等待编译完成就可以了。</p>
<pre><code>cmake --build . --config Debug --target INSTALL
</code></pre>
<p dir="auto">编译完成后，我们可以在工作空间的install 文件夹内找到我们需要的文件。</p>
<p dir="auto"><img src="/assets/uploads/files/1548038647320-e1bfef77-4000-45d0-ac05-51af1c956da1-image.png" alt="e1bfef77-4000-45d0-ac05-51af1c956da1-image.png" class=" img-responsive img-markdown" width="515" height="262" /></p>
<p dir="auto">其中我们要用到的是include文件夹内的内容和lib文件夹的内容。上面的编译方式是生成静态链接库，在windows上对应.lib文件。我们把生成的头文件和静态链接库文件添加到自己的项目依赖里面就可以使用roscpp了。</p>
<h3>创建项目使用roscpp库</h3>
<p dir="auto"><img src="/assets/uploads/files/1548038822625-c552797d-6c00-4bc3-8121-a5cd20b4d511-image.png" alt="c552797d-6c00-4bc3-8121-a5cd20b4d511-image.png" class=" img-responsive img-markdown" width="955" height="660" /></p>
<p dir="auto">在Visual Studio中创建一个新的Windows控制台程序，命名为roscppExample</p>
<p dir="auto">进入到项目目录然后创建一个include文件夹和lib文件夹</p>
<p dir="auto"><img src="/assets/uploads/files/1548038928799-50450419-632b-4354-bbee-fdb84f21f0bf-image.png" alt="50450419-632b-4354-bbee-fdb84f21f0bf-image.png" class=" img-responsive img-markdown" width="726" height="210" /></p>
<p dir="auto">把boost的头文件内容和caktin工作空间install里面的头文件内容复制进去<br />
复制完成后的include文件夹内容如下所示</p>
<p dir="auto"><img src="/assets/uploads/files/1548039086627-1a3edd10-2b33-40d2-9f1b-4cc54b0ca993-image.png" alt="1a3edd10-2b33-40d2-9f1b-4cc54b0ca993-image.png" class=" img-responsive img-markdown" width="697" height="362" /></p>
<p dir="auto">然后从boost/lib文件夹内复制一下的几个文件到刚才创建的lib文件夹</p>
<pre><code>libboost_filesystem-vc141-mt-gd-x64-1_66.lib
libboost_filesystem-vc141-mt-x64-1_66.lib
libboost_chrono-vc141-mt-gd-x64-1_66.lib
libboost_chrono-vc141-mt-x64-1_66.lib
libboost_date_time-vc141-mt-gd-x64-1_66.lib
libboost_date_time-vc141-mt-x64-1_66.lib
libboost_system-vc141-mt-gd-x64-1_66.lib
libboost_system-vc141-mt-x64-1_66.lib
libboost_thread-vc141-mt-gd-x64-1_66.lib
libboost_thread-vc141-mt-x64-1_66.lib
libboost_regex-vc141-mt-gd-x64-1_66.lib
libboost_regex-vc141-mt-x64-1_66.lib
</code></pre>
<p dir="auto">然后把caktin工作空间install/lib文件夹内的几个.lib文件复制到之前创建的lib文件夹中<br />
现在的lib文件夹如下图所示</p>
<p dir="auto"><img src="/assets/uploads/files/1548039441021-86f781f1-a356-4217-9f46-0d8da2ac28e7-image.png" alt="86f781f1-a356-4217-9f46-0d8da2ac28e7-image.png" class=" img-responsive img-markdown" width="540" height="393" /></p>
<p dir="auto">注意上面的库编译的是64位Debug版本。如果需要Release版本对上面cmake的参数进行调整。<br />
设置Visual Studio项目位64 Debug版。</p>
<p dir="auto">打开项目属性，设置VC++目录</p>
<p dir="auto"><img src="/assets/uploads/files/1548039497890-d47a550a-c94b-4228-8aad-1acaa0bd5351-image.png" alt="d47a550a-c94b-4228-8aad-1acaa0bd5351-image.png" class=" img-responsive img-markdown" width="969" height="337" /></p>
<p dir="auto">在包含目录里面添加刚才创建的include目录</p>
<p dir="auto"><img src="/assets/uploads/files/1548039550865-5d25965a-d0af-4b2a-b062-4348513a91b0-image.png" alt="5d25965a-d0af-4b2a-b062-4348513a91b0-image.png" class=" img-responsive img-markdown" width="405" height="141" /></p>
<p dir="auto">同理在库目录里面添加刚才创建的lib文件夹。现在的项目路径如下图所示</p>
<p dir="auto"><img src="/assets/uploads/files/1548039625524-c6e03adb-f98a-48d2-9576-2a106820cf91-image.png" alt="c6e03adb-f98a-48d2-9576-2a106820cf91-image.png" class=" img-responsive img-markdown" width="740" height="173" /></p>
<p dir="auto">打开链接器输入，附加依赖项。添加上lib中文件的文件名</p>
<pre><code>libboost_filesystem-vc141-mt-x64-1_66.lib
libboost_chrono-vc141-mt-x64-1_66.lib
libboost_date_time-vc141-mt-x64-1_66.lib
libboost_system-vc141-mt-x64-1_66.lib
libboost_thread-vc141-mt-x64-1_66.lib
libboost_regex-vc141-mt-x64-1_66.lib
roscpp.lib
roscpp_serialization.lib
cpp_common.lib
rosconsole.lib
rosconsole_backend_interface.lib
rosconsole_print.lib
rostime.lib
xmlrpcpp.lib
</code></pre>
<p dir="auto"><img src="/assets/uploads/files/1548039760494-aabffcc7-8a94-4ae6-8b88-96f1c1373811-image.png" alt="aabffcc7-8a94-4ae6-8b88-96f1c1373811-image.png" class=" img-responsive img-markdown" width="940" height="287" /></p>
<p dir="auto">现在就可以在程序中使用roscpp了。下面是一个简单的发消息的cpp程序。</p>
<pre><code class="language-cpp">#include "stdafx.h"
#define WIN32
#include "ros/ros.h"
#include "std_msgs/String.h"
#pragma comment(lib, "Ws2_32.lib")

int main(int argc, char **argv)
{
	std::map&lt;std::string, std::string&gt; params;
	params.insert(std::pair&lt;std::string, std::string&gt;("__master", "http://192.168.0.32:11311"));
	params.insert(std::pair&lt;std::string, std::string&gt;("__ip", "192.168.0.8"));
	ros::init(params, "talker");
	ros::NodeHandle n;
	ros::Publisher chatter_pub = n.advertise&lt;std_msgs::String&gt;("chatter", 1000);
	ros::Rate loop_rate(10);
	int count = 0;
	while (ros::ok())
	{
		std_msgs::String msg;
		std::stringstream ss;
		ss &lt;&lt; "hello world " &lt;&lt; count;
		msg.data = ss.str();
		std::cout &lt;&lt; "send message: hello world" &lt;&lt; std::endl;
		chatter_pub.publish(msg);
		ros::spinOnce();
		loop_rate.sleep();
		++count;
	}
	return 0;
}
</code></pre>
<p dir="auto">编译完成就可以执行了。</p>
<p dir="auto">按F5看一下运行效果</p>
<p dir="auto"><img src="/assets/uploads/files/1548049970878-82a084bd-4d61-4d9c-8409-d749d0b66e92-image.png" alt="82a084bd-4d61-4d9c-8409-d749d0b66e92-image.png" class=" img-responsive img-markdown" width="993" height="519" /></p>
<p dir="auto">此时订阅/chatter可以看到输入</p>
<p dir="auto"><img src="/assets/uploads/files/1548050024247-b19ff302-44a2-4e9c-b6ec-b4ac1ad02f97-image.png" alt="b19ff302-44a2-4e9c-b6ec-b4ac1ad02f97-image.png" class=" img-responsive img-markdown" width="724" height="421" /></p>
<p dir="auto">这个roscppExample项目已经上传至<a href="https://github.com/BluewhaleRobot/roscppExample" target="_blank" rel="noopener noreferrer">Github</a>。下载完成后用Visual Studio 2017可以直接打开编译运行，不需要安装其他依赖。如果想要在自己的其他项目里面使用roscpp可以把这个项目include和lib对应的添加到自己项目里。</p>
]]></description><link>http://community.bwbot.org/topic/674/如何在windows上使用roscpp</link><generator>RSS for Node</generator><lastBuildDate>Sat, 06 Jun 2026 14:08:04 GMT</lastBuildDate><atom:link href="http://community.bwbot.org/topic/674.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 21 Jan 2019 05:56:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 如何在Windows上使用roscpp on Thu, 13 Oct 2022 05:05:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/1588">@静听松风寒</a> 这个已经太过久远了，很多都不合适了，比如python现在都已经用3了。windows好像本身也可以直接装ros了</p>
]]></description><link>http://community.bwbot.org/post/16893</link><guid isPermaLink="true">http://community.bwbot.org/post/16893</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Thu, 13 Oct 2022 05:05:25 GMT</pubDate></item><item><title><![CDATA[Reply to 如何在Windows上使用roscpp on Wed, 12 Oct 2022 07:07:55 GMT]]></title><description><![CDATA[<p dir="auto">我都是按照步骤做的，但是出现这个问题：<br />
CMake Error at C:/boost/lib/cmake/Boost-1.79.0/BoostConfig.cmake:141 (find_package):<br />
Found package configuration file:</p>
<pre><code>C:/boost/lib/cmake/boost_date_time-1.79.0/boost_date_time-config.cmake
</code></pre>
<p dir="auto">but it set boost_date_time_FOUND to FALSE so package “boost_date_time” is<br />
considered to be NOT FOUND.  Reason given by package:</p>
<p dir="auto">No suitable build variant has been found.</p>
<p dir="auto">The following variants have been tried and rejected:</p>
<ul>
<li>
<p dir="auto">libboost_date_time-vc143-mt-gd-x64-1_79.lib (vc143, detected vc142, set<br />
Boost_COMPILER to override)</p>
</li>
<li>
<p dir="auto">libboost_date_time-vc143-mt-x64-1_79.lib (vc143, detected vc142, set<br />
Boost_COMPILER to override)</p>
</li>
</ul>
<p dir="auto">Call Stack (most recent call first):<br />
C:/boost/lib/cmake/Boost-1.79.0/BoostConfig.cmake:262 (boost_find_component)<br />
D:/TSBrowserDownloads/cmake-3.22.3-windows-x86_64/share/cmake-3.22/Modules/FindBoost.cmake:594 (find_package)<br />
roscpp_core/rostime/CMakeLists.txt:8 (find_package)</p>
<p dir="auto">– Configuring incomplete, errors occurred!<br />
See also “D:/catkin_ws/CMakeFiles/CMakeOutput.log”.<br />
See also “D:/catkin_ws/CMakeFiles/CMakeError.log”.<br />
请问下搂主遇到过没呢？</p>
]]></description><link>http://community.bwbot.org/post/16892</link><guid isPermaLink="true">http://community.bwbot.org/post/16892</guid><dc:creator><![CDATA[静听松风寒]]></dc:creator><pubDate>Wed, 12 Oct 2022 07:07:55 GMT</pubDate></item><item><title><![CDATA[Reply to 如何在Windows上使用roscpp on Fri, 12 Jul 2019 07:54:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a> 例程可以正常运行了<img src="http://community.bwbot.org/assets/plugins/nodebb-plugin-emoji/emoji/android/270c.png?v=9q7h1n1nrom" class="not-responsive emoji emoji-android emoji--v" title=":v:" alt="✌" /> ，谢谢~</p>
]]></description><link>http://community.bwbot.org/post/1375</link><guid isPermaLink="true">http://community.bwbot.org/post/1375</guid><dc:creator><![CDATA[五仁馅冰皮月饼]]></dc:creator><pubDate>Fri, 12 Jul 2019 07:54:25 GMT</pubDate></item><item><title><![CDATA[Reply to 如何在Windows上使用roscpp on Fri, 12 Jul 2019 01:46:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a> 太感谢了，我试试哈<img src="http://community.bwbot.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f44f.png?v=9q7h1n1nrom" class="not-responsive emoji emoji-android emoji--clap" title=":clap:" alt="👏" /></p>
]]></description><link>http://community.bwbot.org/post/1374</link><guid isPermaLink="true">http://community.bwbot.org/post/1374</guid><dc:creator><![CDATA[五仁馅冰皮月饼]]></dc:creator><pubDate>Fri, 12 Jul 2019 01:46:20 GMT</pubDate></item><item><title><![CDATA[Reply to 如何在Windows上使用roscpp on Fri, 12 Jul 2019 01:03:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/926">@五仁馅冰皮月饼</a> <a href="https://github.com/BluewhaleRobot/GalileoSDK/tree/master/lib/debug" target="_blank" rel="noopener noreferrer">这里</a>都是编译好的</p>
]]></description><link>http://community.bwbot.org/post/1373</link><guid isPermaLink="true">http://community.bwbot.org/post/1373</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Fri, 12 Jul 2019 01:03:34 GMT</pubDate></item><item><title><![CDATA[Reply to 如何在Windows上使用roscpp on Thu, 11 Jul 2019 02:54:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/7">@weijiz</a> 谢谢你~  我又按照你的版本试了一下，生成了大部分的文件，但是没有生成ros_cpp.lib，我这边不知道还缺少什么文件，能不能麻烦你把生成的文件发我一份（1136295792@qq.com），我看帖子中给的github链接中也没有ros_cpp.lib文件<img src="http://community.bwbot.org/assets/plugins/nodebb-plugin-emoji/emoji/android/1f62c.png?v=9q7h1n1nrom" class="not-responsive emoji emoji-android emoji--grimacing" title=":grimacing:" alt="😬" /><br />
这里是我最后一步编译的报错，查了好几天了，一直没能解决，不知道你有没有办法解决：</p>
<pre><code>
“C:\catkin_ws\build\INSTALL.vcxproj”(默认目标) (1) -&gt;
“C:\catkin_ws\build\ALL_BUILD.vcxproj”(默认目标) (3) -&gt;
“C:\catkin_ws\build\ros_comm\clients\roscpp\roscpp.vcxproj”(默认目标) (33) -&gt;
“C:\catkin_ws\build\ros_comm\clients\roscpp\roscpp_generate_messages_py.vcxproj”(默认目标) (43) -&gt;
(CustomBuild 目标) -&gt;
  C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets(20
9,5): error MSB6006: “cmd.exe”已退出，代码为 1。 [C:\catkin_ws\build\ros_comm\clients\roscpp\roscpp_generate_messages_py.vcxpro
j]


“C:\catkin_ws\build\INSTALL.vcxproj”(默认目标) (1) -&gt;
“C:\catkin_ws\build\ALL_BUILD.vcxproj”(默认目标) (3) -&gt;
“C:\catkin_ws\build\ros_comm\clients\roscpp\roscpp.vcxproj”(默认目标) (33) -&gt;
“C:\catkin_ws\build\ros_comm_msgs\rosgraph_msgs\rosgraph_msgs_generate_messages_py.vcxproj”(默认目标) (88) -&gt;
“C:\catkin_ws\build\std_msgs\std_msgs_generate_messages_py.vcxproj”(默认目标) (89) -&gt;
  C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets(20
9,5): error MSB6006: “cmd.exe”已退出，代码为 1。 [C:\catkin_ws\build\std_msgs\std_msgs_generate_messages_py.vcxproj]


“C:\catkin_ws\build\INSTALL.vcxproj”(默认目标) (1) -&gt;
“C:\catkin_ws\build\ALL_BUILD.vcxproj”(默认目标) (3) -&gt;
“C:\catkin_ws\build\ros_comm_msgs\std_srvs\std_srvs_generate_messages.vcxproj”(默认目标) (94) -&gt;
“C:\catkin_ws\build\ros_comm_msgs\std_srvs\std_srvs_generate_messages_py.vcxproj”(默认目标) (102) -&gt;
  C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Microsoft.CppCommon.targets(20
9,5): error MSB6006: “cmd.exe”已退出，代码为 1。 [C:\catkin_ws\build\ros_comm_msgs\std_srvs\std_srvs_generate_messages_py.vcxpr
oj]

    47 个警告
    3 个错误
</code></pre>
<p dir="auto">主要是这几个error，谢谢~~</p>
]]></description><link>http://community.bwbot.org/post/1372</link><guid isPermaLink="true">http://community.bwbot.org/post/1372</guid><dc:creator><![CDATA[五仁馅冰皮月饼]]></dc:creator><pubDate>Thu, 11 Jul 2019 02:54:33 GMT</pubDate></item><item><title><![CDATA[Reply to 如何在Windows上使用roscpp on Fri, 28 Jun 2019 01:05:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/926">@五仁馅冰皮月饼</a> 应该是Python版本的问题，我换了Python3之后也编译失败</p>
]]></description><link>http://community.bwbot.org/post/1333</link><guid isPermaLink="true">http://community.bwbot.org/post/1333</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Fri, 28 Jun 2019 01:05:27 GMT</pubDate></item><item><title><![CDATA[Reply to 如何在Windows上使用roscpp on Thu, 27 Jun 2019 11:59:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.bwbot.org/uid/926">@五仁馅冰皮月饼</a> 你的Visual Studio版本，Python版本和我不一样，也许是这个问题导致的</p>
]]></description><link>http://community.bwbot.org/post/1331</link><guid isPermaLink="true">http://community.bwbot.org/post/1331</guid><dc:creator><![CDATA[weijiz]]></dc:creator><pubDate>Thu, 27 Jun 2019 11:59:01 GMT</pubDate></item><item><title><![CDATA[Reply to 如何在Windows上使用roscpp on Wed, 26 Jun 2019 06:06:26 GMT]]></title><description><![CDATA[<p dir="auto">我运行的时候，在编译安装这一步出现了问题，网上没有查到类似问题的解决办法，请问楼主有没有遇到过：<br />
<img src="/assets/uploads/files/1561529109576-3be8381e-a626-42c1-8ef2-f53c92a73706-image.png" alt="3be8381e-a626-42c1-8ef2-f53c92a73706-image.png" class=" img-responsive img-markdown" width="1115" height="1403" /><br />
前面都是按照楼主说的步骤做的，软件都已经下载配置，build文件夹里面的内容也是删除过的，请帮我看一看，谢谢~</p>
]]></description><link>http://community.bwbot.org/post/1329</link><guid isPermaLink="true">http://community.bwbot.org/post/1329</guid><dc:creator><![CDATA[五仁馅冰皮月饼]]></dc:creator><pubDate>Wed, 26 Jun 2019 06:06:26 GMT</pubDate></item></channel></rss>