I've just installed kdevelop 4.1 , then created a normal hello world , build is ok but when i press execute it gives me (no valid executable specified) any idea ?
Asked
Active
Viewed 7,700 times
2 Answers
7
Meh, the launch configuration - our biggest usability problem...
- Go to Run -> Configure Launches
- select your project to the left
- hit the "+" button
- to the right, select your project target
- optionally add a build dependency (again, select e.g. your target).
that should be it.
/me really wants to rewrite this dialog...

milianw
- 5,164
- 2
- 37
- 41
-
That doesn't really help me. In particular, from my view a compiler *produces* an executable, what exactly am I pointing it at? The execute I want it to create? It displays an error about not being able to find the executable. So if not that, then what? – Fred Aug 25 '15 at 06:52
-
@Fred: KDevelop is not a compiler, it does not produce any executable. Your toolchain, i.e. make files, probably generated by CMake or QMake, run a compiler which then produce an executable. KDevelop just runs make and tries to find targets which you can use in the dialog here. I suggest you understand your toolchain first. – milianw Aug 25 '15 at 11:27