I am just using ubuntu 14.04, and i want to compile blender with Cmake, Here is the Website:http://wiki.blender.org/index.php/Dev:Doc/Building_Blender/Linux/Ubuntu/CMake When i already in the Cmake application, i configure it then it wont work. i already have everything, Can you explained to me.
Asked
Active
Viewed 829 times
2 Answers
0
You may want to read this about alternative blender installs.
The cmake name is a bit misleading, it actually configures options and creates the makefiles. Run make install in the build directory after you have run ccmake. Once make has finished you can then start blender with ./bin/blender in the same directory.
If you are using the cmake-gui then you need to open a terminal in the Where to build binaries setting shown in the cmake-gui window.
0
issue this to install upstream libraries
sudo apt-get build-dep blender
then in the blender source directory issue
mkdir build
cd build
cmake .. # <-- NOTE the two periods (..) which tells cmake to look in parent dir
make
make install
now you can launch
source_dir/build/bin/blender
optionally add to $PATH
export PATH=$PATH:source_dir/build/bin
then launch using
blender
Scott Stensland
- 17,385