Version: (using KDE 4.2.0) OS: Linux In the project options, I created a new run target. As "Executable", I choose "Target", and used the only target of my project (which KDevelop helpfully autocompleted :) Afterwards, that run target appeared in Run->Current Run Target, with the correct name. However, Run->Execute Program gave me an error dialog: "Target 'eqOSG' is not executable.", and afterwards a second error dialog: "Could not run ''. Make sure that the path name is specified correctly.". The target is the only target of my CMakeLists.txt and was added with a run-of-the-mill ADD_EXECUTABLE() call. I would expect that this is recognised as an executable. Also, in case of an error, only one error dialog should be shown.
This can be reproduced with the simplest CMake file: PROJECT(Test) ADD_EXECUTABLE(Test main.cpp)
yeah, the target support in the run config is completely broken. The completion complete's only folders as far as I can see, not targets.
This works just fine now with the new launch framework.