Skip to content
Evan Teran edited this page Oct 11, 2015 · 32 revisions

For Ubuntu >= 13.10

sudo apt-get install \
    build-essential \
    libboost-dev \
    libqt5xmlpatterns5-dev \
    qtbase5-dev \
    qt5-default

From here, there are two paths:

  1. run from the build directory

     qmake
     make
     ./edb
    
  2. install system wide

     qmake -makefile DEFAULT_PLUGIN_PATH="/usr/local/lib64/edb/"
     make
     sudo make INSTALL_ROOT=/usr/local/ install
     edb
    

Clone this wiki locally