Questions tagged [kdevelop]

KDevelop is a IDE for C/C++ and Qt supporting cmake, qmake and custom makefiles. It also has plugins for PHP, Python, Rust, Ruby, QML/JS and Go languages.

245 questions
0
votes
2 answers

problems of installing kde runtime libraries on Linux

I am trying to install kde runtime libraries for kscope on Linux (2.6.18-308.11.1.el5). http://kscope.sourceforge.net/install.shtml I have downloaded kde-runtime-4.9.2 from ftp://ftp.kde.org/pub/kde/stable/4.9.2/src/ But, in the downloaded files, I…
runner frank
  • 331
  • 1
  • 6
  • 13
0
votes
1 answer

Kdevelop 4 link glew and freeglut

How can I link glew and freeglut to my project using Kdevelop 4? The functions of glut and opengl shows in code completion suggestion list but it fails with undefined reference to glut functions when I build it. How and what things do I have to set…
tambalolo
  • 1,035
  • 3
  • 14
  • 30
0
votes
1 answer

How to debug an existing project in eclipse

I want to debug an existing project "http://www.gnu.org/software/rx/rx.html" in eclipse..i followed through the article http://www.ibm.com/developerworks/aix/library/au-unix-eclipse/index.html Whenever I try to run the build.xml ant file...it tells…
-1
votes
1 answer

Linker Problems: Target isn't x86

today i started coding c++ for windows, while always been Linux before. I use newest KDevelop with current windows build tools and newest CMake. My problem is as follows: I have got a x64 .lib file of a hardware producer with a bunch of header and…
-1
votes
1 answer

Undefined reference in Kdevelop

I have main.cpp, linking test function from io.c #include #include "io.h" int main(int argc, char **argv) { test(); return 0; } io.c: #include #include "io.h" void test() { printf("hee"); } and I configure…
1 2 3
16
17