Installation - GoldMax/QtCreatorD GitHub Wiki

(K)Ubuntu

From repositories

  1. Select a target directory (e.g. /opt)
  2. Download the source files of QtCreator from repositories:
    • apt-get source qtcreator - download sources and create the QtCreator directory (qtcreator-3.0.1 in my case)
    • sudo apt-get build-dep qtcreator - install dependencies
  3. Make QtCreator
    cd qtcreator-3.0.1/src && qmake -r && make && cd ../../
    Note: if make halted with error cannot find -lqbscore, just copy all files from qtcreator-3.0.1/src/shared/qbs/lib into the qtcreator-3.0.1/lib/qtcreator directory and run make again.
  4. Clone QtCreatorD repository and checkout '3.0.1' tag
    git clone https://github.com/GoldMax/QtCreatorD.git
    cd QtCreatorD && git checkout tags/3.0.1 && cd ..
  5. Copy the deditor and dprojectmanager directories into the src/plugins folder of the QtCreator directory.
    cp -a QtCreatorD/deditor qtcreator-3.0.1/src/plugins
    cp -a QtCreatorD/dprojectmanager qtcreator-3.0.1/src/plugins
  6. Add the deditor and dprojectmanager SUBDIRS references at the end of src/plugins/plugins.pro file
    echo -e "\nSUBDIRS += \\ \n deditor \\ \n dprojectmanager \n" >> qtcreator-3.0.1/src/plugins/plugins.pro
  7. Make QtCreatorD
    cd qtcreator-3.0.1/src && qmake -r && make
  8. For support of autocompletion need install DCD and add path to it into the PATH.