Skip to content

Instantly share code, notes, and snippets.

@nutti
Created July 27, 2015 12:02
Show Gist options
  • Save nutti/9786794e2c2231c7bdac to your computer and use it in GitHub Desktop.
Save nutti/9786794e2c2231c7bdac to your computer and use it in GitHub Desktop.
[Blender] ソースコードからBlender本体をビルドする ref: http://qiita.com/nutti/items/2a7d31e224b28142b3d6
$ 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
$ echo %cd%
D:\workspace\blender_dev\blender
$ cd ..
$ mkdir build
$ 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