Calligra/Building/2/Developing With QtCreator
(Redirected from Calligra/Building/Developing With QtCreator)
If everything is setup properly as explained here, you will be able to run Calligra apps and debug them from within Qt Creator. Git integration works too.
- Start Qt Creator, use File -> Open File or Project from the menu and select CMakeLists.txt file which is in the root of your Calligra source tree directory. The CMake wizard should start.
- In the Build Location wizard's page you can set a custom build directory. Better do not use the proposed one (/path/to/source/qtcreator-build) but /home/YOURLOGIN/kde4/build/calligra or something like this. If you built this code from command line before, it's best idea to use the same build dir as before. Thus you can use Creator-based and command line-based builds exchangeably.
- Click Next. On the Run CMake wizard page you should add at least the install-dir build option:
-DCMAKE_INSTALL_PREFIX=/home/YOURLOGIN/kde4/inst
Depending on what kind of build you want, you can also append these options:- For a build where you want to be able to obtain backtraces (good for bugfixing or reporting bugs)
-DCMAKE_BUILD_TYPE=DebugFull
- For building tests as well append
-DKDE4_BUILD_TESTS=ON
- For a fast running release build (not really useful for development).
-DKDE4_BUILD_TESTS=0 -DBUILD_TESTS=0 -DCMAKE_BUILD_TYPE=Release
- For a build where you want to be able to obtain backtraces (good for bugfixing or reporting bugs)
- After finishing the wizard, change to the Project view.
- Edit the Make build step and set the Additional arguments to:
-j5 install
(change 5 to other number as explained at [2]) - Add the variables to the build environment as listed below. You can use the Batch Edit button for convenience. See also Qt Creator Manual. Note you cannot use $HOME and other variables there. Compare to [3]. Replace paths containing lib64 with other if your OS is 32 bit.
CMAKE_PREFIX_PATH=/home/YOURLOGIN/kde4/inst
KDEDIRS=/home/YOURLOGIN/kde4/inst
KDEHOME=/home/YOURLOGIN/kde4/inst/.kde4
KDESYCOCA=/var/tmp/kdedev-YOURLOGIN/ksycoca
KDETMP=/tmp/kdedev-YOURLOGIN
KDEVARTMP=/var/tmp/kdedev-YOURLOGIN
KDE_INSTALL_PREFIX=/home/YOURLOGIN/kde4/inst
LD_LIBRARY_PATH=/home/YOURLOGIN/kde4/inst/lib64
PATH=/home/YOURLOGIN/kde4/inst/bin:/usr/bin:/usr/local/bin:/bin:/usr/bin/X11:/usr/X11R6/bin
PKG_CONFIG_PATH=/home/YOURLOGIN/kde4/inst/lib64/pkgconfig
QT_PLUGIN_PATH=/home/YOURLOGIN/kde4/inst/lib64/kde4/plugins
- Assure, that in Run Settings Run Environment is set to Use Build Environment
- Now in project's Run Settings you can select in the Run configuration which program should start when you execute Run or Debug.