On Saturday 09 June 2007, Danesh Daroui said: > If you have experience in KDevelop I amd using KDevlop C/C++ and have > following questions: > > 1. How can I specify path to my my "include" directory? I used Automake > configuration but it didn't work!
Post the generated Makefile.am file from the subdirectory of your project where you have the problem. FWIW, I usually add my project internal includes as 'Directories outside project' in a given project's Options dialog as literal compiler flags, eg -I$(top_srcdir)/path/to/includes. top_srcdir is a variable set by automake which is the top directory of your sources. This lets you build your project outside of the source dir. If you need to #include generated headers (eg uic outputted headers) then use top_builddir - easy! > 2. I can not debug my code however the code is compiled in "debug" mode. > How can I activate debugging mode? Debug->Start doesn't work? Are the paths to the project sources and build dir for the debug configuration in Project->Project Options->Configure options correct? (NB I don't use KDevelop for debugging so I am a bit shaky in this area) HTH Will -- Desktop Engineer Interfaces and Applications Team -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
