A PCRE internal error occured. This might be caused by a faulty plugin

====== Differences ====== This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
applications:graphics:freecad [2016/07/05 03:27]
admin [Install Third Party Libraries]
applications:graphics:freecad [2016/07/05 03:57] (current)
admin [Make an Out-of-Source Build]
Line 108: Line 108:
   python-pivy \\   python-pivy \\
   python-qt4 \\   python-qt4 \\
-  libspnav-dev+  libspnav-dev \\ 
 +  libmedc-dev \\ 
 +  libvtk6-dev \\ 
 +  libproj-dev
 </​Code>​ </​Code>​
  
 +The following packages are required if we want to create a Debian package:
 +<​Code:​bash |Additional packages>​
 +> apt-get install dh-make devscripts lintian
 +</​Code>​
  
 +==== Make an Out-of-Source Build ====
 +<​Code:​bash |Build FreeCAD out-of-source>​
 +> mkdir freecad-build
 +> cd freecad-build
 +> cmake ../​free-cad-code -DCMAKE_BUILD_TYPE=Release
 +> make
 +</​Code>​
 +
 +The FreeCAD executable now resides in the''​bin''​ folder, we can launch it with:
 +<​Code:​bash |Launch FreeCAD>
 +> ./​bin/​FreeCAD
 +</​Code>​