KDevelop5/Manual/Running programs/da: Difference between revisions

From KDE UserBase Wiki
(Importing a new version from external source)
(Importing a new version from external source)
Line 9: Line 9:
[[Image:kdevelop-2.png|thumb|400px|center]]
[[Image:kdevelop-2.png|thumb|400px|center]]


To set this up go to menu item <menuchoice>Run -> Configure launches</menuchoice>, highlight the project you want to add a launch for, and click on the {{Plus}} button. Then enter the name of the executable, and the path where you want to run the program. If running the executable depends on building the executable and/or other libraries first, then you may want to add them to the list at the bottom: select <menuchoice>Build</menuchoice> from the dropdown menu, then hit the {{Icon|folder}} symbol to the right of the textbox and select whatever target you want to have built. In the example above, I have selected the target <menuchoice>all</menuchoice> from project '''''1.deal.II''''' and '''''step-32''''' from project '''''1.step-32''''' to make sure both the base library and the application program have been compiled and are up to date before the program is actually executed. While you're there, you may as well also configure a debug launch by clicking on the <menuchoice>Debug</menuchoice> symbol and adding the name of the debugger program; if this is the system's default debugger (e.g. '''gdb''' on Linux), then you don't need to do this step.
For at konfigurere opstarteren vælger du menuen <menuchoice>Kør -> Indstil opstarter...</menuchoice>, fremhæver det projekt, som du vil tilføje en opstarter for og klikker på knappen {{Plus}}. Skriv så navnet på den kørbare fil og stien til arbejdsmappen. Hvis kørsel af programmet afhænger af, at den kørbare file eller et bibliotek er blevet bygget først, så er det en god ide at føje dem til listen nederst i dialogen: Vælg <menuchoice>Byg</menuchoice> fra dropnedmenuen, klik på knappen {{Icon|folder}} og vælg det mål, som skal bygges. I eksemplet ovenfor har jeg valgt målet <menuchoice>all</menuchoice> fra projektet '''''1.deal.II''''' og '''''step-32''''' fra projektet '''''1.step-32''''' for at sikre mig, at både basisbiblioteket og  programmet er blevet kompileret og er up to date før, før programmet faktisk køres. Mens du er her kan du lige så godt også konfigurere en fejlsøgningsopstart ved at klikke på <menuchoice>Fejlsøgning</menuchoice> og tilføje navnet på fejlsøgeren; hvis det er systemets standardfejlsøger (fx '''gdb''' Linux), så behøver du ikke at gennemføre dette skridt.


[[Image:kdevelop-3.png|thumb|650px|center]]
[[Image:kdevelop-3.png|thumb|650px|center]]

Revision as of 08:13, 1 October 2017

Other languages:

Kør programmer i KDevelop

Efter at du har bygget et program, så vil du nok køre det. For at kunne gøre dette skal du konfigurere opstarteren for dit projekt. En opstart består af et navn på et program, nogle kommandolinjeparametre og et kørselsmiljø (så som "kør dette program i en skal" eller "kør dette program i fejlsøgeren").

Opsætning af opstarteren i KDevelop

For at konfigurere opstarteren vælger du menuen Kør -> Indstil opstarter..., fremhæver det projekt, som du vil tilføje en opstarter for og klikker på knappen . Skriv så navnet på den kørbare fil og stien til arbejdsmappen. Hvis kørsel af programmet afhænger af, at den kørbare file eller et bibliotek er blevet bygget først, så er det en god ide at føje dem til listen nederst i dialogen: Vælg Byg fra dropnedmenuen, klik på knappen og vælg det mål, som skal bygges. I eksemplet ovenfor har jeg valgt målet all fra projektet 1.deal.II og step-32 fra projektet 1.step-32 for at sikre mig, at både basisbiblioteket og programmet er blevet kompileret og er up to date før, før programmet faktisk køres. Mens du er her kan du lige så godt også konfigurere en fejlsøgningsopstart ved at klikke på Fejlsøgning og tilføje navnet på fejlsøgeren; hvis det er systemets standardfejlsøger (fx gdb på Linux), så behøver du ikke at gennemføre dette skridt.

You can now try to run the program: Select Run -> Execute Launch from KDevelop's main window menu (or hit Shift + F9) and your program should run in a separate subwindow of KDevelop. The picture above shows the result: The new Run tool subwindow at the bottom shows the output of the program that is being run, in this case of the step-32 program.

Note

If you have configured multiple launches, you can choose which one should run when you hit Shift + F9 by going to Run -> Current Launch Configuration. Unfortunately, by default, all launches are named New Native Application without an obvious possibility of renaming them, making it difficult to distinguish them when selecting the current launch configuration (see KDevelop bug 272300). There is a non-obvious way to edit the name of a configuration, however: in the dialog box you get when you select Run -> Current Launch Configuration, double-click on the name of the configuration in the tree view on the left, which will allow you to edit the configuration's name.


Some useful keyboard shortcuts

Running a program
F8 Build (call make)
Shift + F9 Run
F9 Run program in the debugger; you may want to set breakpoints beforehand, for example by right-clicking with the mouse on a particular line in the source code