Created
July 27, 2015 12:02
-
-
Save nutti/9786794e2c2231c7bdac to your computer and use it in GitHub Desktop.
[Blender] ソースコードからBlender本体をビルドする ref: http://qiita.com/nutti/items/2a7d31e224b28142b3d6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd D:\workspace\blender_dev | |
$ git clone git://git.blender.org/blender.git | |
$ cd blender | |
$ git submodule update --init --recursive | |
$ git submodule foreach git checkout master | |
$ git submodule foreach git pull --rebase origin master | |
$ cd D:\workspace\blender_dev | |
$ svn checkout https://svn.blender.org/svnroot/bf-blender/trunk/lib/win64_vc12 lib/win64_vc12 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ echo %cd% | |
D:\workspace\blender_dev\blender | |
$ cd .. | |
$ mkdir build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ echo %cd% | |
D:\workspace\blender_dev | |
$ cd lib\win64_vc12 | |
$ svn update | |
$ cd ..\..\blender | |
$ git pull --rebase | |
$ git submodule foreach git pull --rebase origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment