﻿<?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%3AJr100%2FCMake%2FMacOSX</id>
	<title>利用者:Jr100/CMake/MacOSX - 版の履歴</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%3AJr100%2FCMake%2FMacOSX"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Jr100/CMake/MacOSX&amp;action=history"/>
	<updated>2026-09-05T12:46:05Z</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:Jr100/CMake/MacOSX&amp;diff=150329&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:Jr100/CMake/MacOSX&amp;diff=150329&amp;oldid=prev"/>
		<updated>2018-06-28T21:15:07Z</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日 (木) 21:15時点における版&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:Jr100/CMake/MacOSX&amp;diff=150328&amp;oldid=prev</id>
		<title>2015年11月15日 (日) 23:54にwiki&gt;Jr100による</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Jr100/CMake/MacOSX&amp;diff=150328&amp;oldid=prev"/>
		<updated>2015-11-15T23:54:44Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= Introduction =&lt;br /&gt;
Building Blender on any system is very easy. All you will need are a couple of software tools and of course, a computer! The instructions below apply to MacOSX and should work on any version.&lt;br /&gt;
The steps in building Blender are:&lt;br /&gt;
# Get the software&lt;br /&gt;
# Get the source&lt;br /&gt;
# Build it!&lt;br /&gt;
&lt;br /&gt;
= Installing The Software =&lt;br /&gt;
To get and build Blender, you need a number of packages installed on your system. To get them follow these simple instructions.&lt;br /&gt;
&lt;br /&gt;
== Git ==&lt;br /&gt;
Git is a version control system that we use to download, list changes to, and update Blender's source. For a more in-depth overview, look at [http://wiki.blender.org/index.php/Dev:Doc/Tools/Git this page.] To install Git, go to [http://www.git-scm.com/download/ http://www.git-scm.com/download] and select the installer for MacOSX.&lt;br /&gt;
&lt;br /&gt;
=== Test The Install ===&lt;br /&gt;
Once it has installed, open up your terminal and test it by typing&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
git --help&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you see output like,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
usage: git [--version] [--help] [-C &amp;lt;path&amp;gt;] [-c name=value].....&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
you will know that it has been installed correctly.&lt;br /&gt;
&lt;br /&gt;
== CMake ==&lt;br /&gt;
CMake is a family of tools designed to build, test and package software. We use it to configure our code for building. To install go to [http://www.cmake.org/download/ http://www.cmake.org/download/] there you can download the package for MacOSX.&lt;br /&gt;
&lt;br /&gt;
= Getting The Source =&lt;br /&gt;
Getting the source is as easy as running a few commands. Be warned that Blender's source is over 300 megabytes and it will take a little while to download.&lt;br /&gt;
&lt;br /&gt;
=== Creating the blender-git folder ===&lt;br /&gt;
To get the source, you first have to have somewhere to put it! So, the first thing you should do, is open up terminal.app and type in these commands to create and go to a new blender folder.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
mkdir ~/blender-git&lt;br /&gt;
cd ~/blender-git&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Checking Out The Source ===&lt;br /&gt;
Now it's time to actually get the source code, just type these commands into the terminal and away you go!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
git clone http://git.blender.org/blender.git&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Updating ==&lt;br /&gt;
If you ever want to update your code to the latest version, it is suggested that you do this every day, just use these commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd ~/blender-git/blender&lt;br /&gt;
git pull --rebase&lt;br /&gt;
git submodule foreach git pull --rebase origin master&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Building It =&lt;br /&gt;
To build Blender, open up CMake and follow the instructions below.&lt;br /&gt;
&lt;br /&gt;
== Configuring The Build ==&lt;br /&gt;
# Set the source path to be blender-git/blender&lt;br /&gt;
# Create a new folder in blender-git called build and set the build directory to blender-git/build&lt;br /&gt;
# Click the configure button and select Unix Makefiles on the popup. Don't be frightened by the red, that is fine.&lt;br /&gt;
# After that has finished, click the generate button to generate the makefiles.&lt;br /&gt;
# When that is finished, close CMake.&lt;br /&gt;
&lt;br /&gt;
== Building The Source ==&lt;br /&gt;
To build the source, follow the steps and wait while it compiles. Warning: on first build, the code takes an average of 2 hours to compile, after that, it will only compile what you have changed.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
cd ~/blender-git/build&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Testing The Build ==&lt;br /&gt;
To test the newly compiled version of Blender, go to blender-git/blender and run&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
blender.app&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and Blender will open.&lt;br /&gt;
&lt;br /&gt;
= Closing Notes =&lt;br /&gt;
We hope that you have found this helpful and informative. If you have any questions or the build didn't work for some reason, contact a developer on the #blendercoders irc channel.&lt;br /&gt;
Thanks,&lt;br /&gt;
The Blender Developer Team&lt;/div&gt;</summary>
		<author><name>wiki&gt;Jr100</name></author>
		
	</entry>
</feed>