I went into the src directory and did
rm *.o
rm moc*
rm Makefile
Are there any more files I should delete?
Rgx
I went into the src directory and did
rm *.o
rm moc*
rm Makefile
Are there any more files I should delete?
Rgx
Try running 'make clean' or even 'make distclean'.
These are the flags that are set in the makefile for compiling
CFLAGS = -pipe -O0 -march=i586 -mtune=i686 -fmessage-length=0 -Wall -D_FORTIFY_SOURCE=2 -g -Wall -W -g -DQT_SHARED -DQT_TABLET_SUPPORT -DQT_NO_DEBUG -DQT_THREAD_SUPPORT
CXXFLAGS = -pipe -O0 -march=i586 -mtune=i686 -fmessage-length=0 -Wall -D_FORTIFY_SOURCE=2 -g -Wall -W -g -DQT_SHARED -DQT_TABLET_SUPPORT -DQT_NO_DEBUG -DQT_THREAD_SUPPORT
Rgx
Hi,
The solution of the problem was found by a friend of mine who suggested that kdevelop didn't search for the executable in de src directory and that I would probably find the actual executable in this src directory. And indeed there was the executable I was expecting...
Hope this helps other people with similar problems.
Does anybody know what I should change in the .pro or Makefile so that kdevelop runs the right executable?
Rgx![]()
![]()
Maybe you should change KDevelop's project settings instead?
But if you insist on changing the project file, you can set a DESTDIR variable and point it to the directory where the binary is to be stored.
regix (20th July 2006)
Bookmarks