﻿<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=%E5%88%A9%E7%94%A8%E8%80%85%3AMindrones%2FPython%2FBf-extensions%2FBuilding_with_Contrib_scripts</id>
	<title>利用者:Mindrones/Python/Bf-extensions/Building with Contrib scripts - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=%E5%88%A9%E7%94%A8%E8%80%85%3AMindrones%2FPython%2FBf-extensions%2FBuilding_with_Contrib_scripts"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Mindrones/Python/Bf-extensions/Building_with_Contrib_scripts&amp;action=history"/>
	<updated>2026-06-25T03:21:33Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Mindrones/Python/Bf-extensions/Building_with_Contrib_scripts&amp;diff=101297&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Mindrones/Python/Bf-extensions/Building_with_Contrib_scripts&amp;diff=101297&amp;oldid=prev"/>
		<updated>2018-06-28T19:40:10Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;2018年6月28日 (木) 19:40時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Yamyam</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Mindrones/Python/Bf-extensions/Building_with_Contrib_scripts&amp;diff=101296&amp;oldid=prev</id>
		<title>wiki&gt;Mindrones: moved User:Mindrones/Bf-extensions/Building with Contrib scripts to User:Mindrones/Python/Bf-extensions/Building with Contrib scripts</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Mindrones/Python/Bf-extensions/Building_with_Contrib_scripts&amp;diff=101296&amp;oldid=prev"/>
		<updated>2012-02-07T23:36:03Z</updated>

		<summary type="html">&lt;p&gt;moved &lt;a href=&quot;/%E5%88%A9%E7%94%A8%E8%80%85:Mindrones/Bf-extensions/Building_with_Contrib_scripts&quot; class=&quot;mw-redirect&quot; title=&quot;利用者:Mindrones/Bf-extensions/Building with Contrib scripts&quot;&gt;User:Mindrones/Bf-extensions/Building with Contrib scripts&lt;/a&gt; to &lt;a href=&quot;/%E5%88%A9%E7%94%A8%E8%80%85:Mindrones/Python/Bf-extensions/Building_with_Contrib_scripts&quot; title=&quot;利用者:Mindrones/Python/Bf-extensions/Building with Contrib scripts&quot;&gt;User:Mindrones/Python/Bf-extensions/Building with Contrib scripts&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
pushd /home/user/my/blender/builds/cmake&lt;br /&gt;
&lt;br /&gt;
BLENDER=../blender&lt;br /&gt;
CONTRIB=../blender/release/scripts/addons_contrib/&lt;br /&gt;
EXTERN=../blender/release/scripts/addons_extern/&lt;br /&gt;
&lt;br /&gt;
#CMAKEOPTIONS=&amp;quot;-D WITH_INSTALL:BOOL=TRUE&amp;quot;&lt;br /&gt;
CMAKEOPTIONS=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
#MAKEVERBOSE=&amp;quot;VERBOSE=1&amp;quot;&lt;br /&gt;
MAKEVERBOSE=&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
echo; echo &amp;quot;svn up $BLENDER&amp;quot;&lt;br /&gt;
svn up $BLENDER&lt;br /&gt;
&lt;br /&gt;
echo; echo &amp;quot;svn up $CONTRIB&amp;quot;&lt;br /&gt;
svn up $CONTRIB&lt;br /&gt;
&lt;br /&gt;
#echo; echo &amp;quot;svn up $EXTERN&amp;quot;&lt;br /&gt;
#svn up $EXTERN&lt;br /&gt;
&lt;br /&gt;
echo; echo &amp;quot;cmake $CMAKEOPTIONS ../blender&amp;quot;&lt;br /&gt;
cmake $CMAKEOPTIONS ../blender&lt;br /&gt;
&lt;br /&gt;
echo; echo &amp;quot;make $MAKEVERBOSE&amp;quot;&lt;br /&gt;
make $MAKEVERBOSE&lt;br /&gt;
&lt;br /&gt;
popd&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>wiki&gt;Mindrones</name></author>
		
	</entry>
</feed>