Build Under Linux - Heeks/heekscnc GitHub Wiki

Requirements

This tutorial assumes you already have installed:

  • python
  • wxWidgets (2.8 or 3.0)
  • OpenCASCADE or OCE (OpenCASCADE Community Edition)
  • OpenCAMLib (OCL)

Fetch

git clone https://github.com/Heeks/libarea.git
git clone https://github.com/Heeks/heekscad.git
git clone https://github.com/Heeks/heekscnc.git

Build and install

libarea

cd libarea
mkdir build
cd build
cmake ..
make
sudo make install
cd ../..

HeeksCAD

cd heekscad
mkdir build
cd build
cmake ..
make
sudo make install
cd ../..

HeeksCNC

cd heekscnc
mkdir build
cd build
cmake ..
make
sudo make install
cd ../..