Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I configure KDevelop to build before executing?

Tags:

c++

kdevelop

In most IDEs (e.g. Visual Studio, all the java IDEs, etc) by default the sources are build when the user selects to execute or debug the application. How can I configure KDevelop to do the same?

like image 884
Grzenio Avatar asked Feb 13 '13 14:02

Grzenio


1 Answers

Go to the Run->Launch Configurations menu item.

There you can configure a launch configuration, with arguments, working directory, etc.

At the bottom, there is a dependencies block, where you can specify a build target that should be run before the execution of the launch configuration.

like image 113
Tom Macdonald Avatar answered Nov 03 '22 18:11

Tom Macdonald