kobby

INSTALLATION

Its very easy to compile source code and install kobby.

Just complete the dependency tree...! and this is some what complex.

so as mentioned u need to install :

  • CMake >= 2.6
  • g++
  • libinfinity 0.3.0-1
  • libqinfinity-1.0b4

which comes with some additional dependency...

  • install development packages for above too
  • install development packages for ked
  • development packages fot qt

cross check with....

apt-get install checkinstall kdelibs5-dev kdebase-workspace-dev

Now u can compile from source code...

cd kobby-1.0b4

cmake .

make

sudo make install

***************************************************************************************************************

Compiling kde project in QT

  • Import the CMakeLists.txt file
  • add to .pro file : LIBS += -lkdeui

CMakeLists.txt link

project (akn) :project name

find_package(KDE4 REQUIRED) : function locates the package that you ask it for

include (KDE4Defaults)

include_directories(${KDE4_INCLUDES})

set(tutorial1_SRCS main.cpp)

kde4_add_executable(akn ${tutorial1_SRCS}) :create an executable called akn

target_link_libraries(akn ${KDE4_KDEUI_LIBS})

install(TARGETS akn ${INSTALL_TARGETS_DEFAULT_ARGS})