FreeCAD Build Tool/de: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
(46 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<languages/>
The '''FreeCAD build tool''' or '''fcbt''' is a python script located at

<syntaxhighlight>
{{Docnav/de
trunc/src/Tools/fcbt.py
|[[Start_up_and_Configuration/de|Programmstart und Konfiguration]]
</syntaxhighlight>
|[[Module_Creation/de|Modul Erstellung]]
It can be used to simplify some frequent tasks in building, distributing and extending FreeCAD.
}}

{{TOCright}}

== Übersicht ==
Das '''FreeCAD Bau Werkzeug''' oder '''fcbt''' ist ein Pythonskript zu finden unter
{{Code|code=
trunc/src/Tools/fcbt.py
}}
Es kann verwendet werden, um einige häufige Aufgaben zu vereinfachen für Aufbau, Verteilung und Erweiterung von FreeCAD.


== Usage ==
== Anwendung ==
Mit korrekt installiertem [http://de.wikipedia.org/wiki/Python_%28Programmiersprache%29 Python], kann ''fcbt'' durch den Befehl ausgeführt werden
With [[wikipedia:Python (programming language)|Python]] correctly installed, ''fcbt'' can be invoked by the command
{{Code|code=
<syntaxhighlight>
python fbct.py
python fbct.py
}}
</syntaxhighlight>
Es zeigt ein Menü an, in dem du die Aufgabe für den Einsatz auswählen kannst, die du auswählen willst für:
It displays a menu, where you can select the task you want to use it for:
{{Code|code=
<syntaxhighlight>
FreeCAD Build Tool
FreeCAD Build Tool
Usage:
Usage:
fcbt <command name> [command parameter]
fcbt <command name> [command parameter]
possible commands are:
possible commands are:
- DistSrc (DS) Build a source Distr. of the current source tree
- DistSrc (DS) Build a source Distr. of the current source tree
- DistBin (DB) Build a binary Distr. of the current source tree
- DistBin (DB) Build a binary Distr. of the current source tree
- DistSetup (DI) Build a Setup Distr. of the current source tree
- DistSetup (DI) Build a Setup Distr. of the current source tree
- DistSetup (DUI) Build a User Setup Distr. of the current source tree
- DistSetup (DUI) Build a User Setup Distr. of the current source tree
- DistAll (DA) Run all three above modules
- DistAll (DA) Run all three above modules
- NextBuildNumber (NBN) Increase the Build Number of this Version
- NextBuildNumber (NBN) Increase the Build Number of this Version
- CreateModule (CM) Insert a new FreeCAD Module in the module directory
- CreateModule (CM) Insert a new FreeCAD Module in the module directory
For help on the modules type:
For help on the modules type:
fcbt <command name> ?
fcbt <command name> ?
}}
</syntaxhighlight>
At the input promt enter the abbreviated command you want to call. For example type "CM" for [[Module Creation|creating a module]].
An der Eingabeaufforderung gib den abgekürzten Befehl den du anrufen möchtest ein. Gib z. B. "CM" für [[Module Creation/de|Ein Modul erstellen]] ein.


=== DistSrc ===
=== DistSrc ===
Der Befehl "DS" '''erzeugt eine Quellcode Verteilung''' des aktuellen Quellcode Baums.
The command "DS" [[Create Source Distribution|creates a source distribution]] of the current source tree.


=== DistBin ===
=== DistBin ===
Der Befehl "DB" '''erzeugt eine Binärverteilung''' des aktuellen Quellcodebaums.
The command "DB" [[Create Binary Distibution|creates a binary distribution]] of the current source tree.


=== DistSetup ===
=== DistEinstellung ===
Der Befehl "DI" '''erstellt eine Einrichtungsverteilung''' des aktuellen Quellcodebaums.
The command "DI" [[Create Setup Distribution|creates a setup distribution]] of the current source tree.


=== DistSetup ===
=== DistEinstellung ===
Der Befehl "DUI" '''erstellt eine Benutzer Einstellverteilung''' des aktuellen Quellcodebaums.
The command "DUI" [[Create User Setup Distribution|creates a user setup distribution]] of the current source tree.


=== DistAll ===
=== DistAlles ===
The command "DA" executes "DS", "DB" and "DI" in sequence.
Der Befehl "DA" führt "DS", "DB" und "DI" ALLE der Reihe nach aus.


=== NextBuildNumber ===
=== NächsteBauNummer ===
Der "NBN" Befehl '''erhöht die Bau Nummer''', um eine neue Freigabestand Version von FreeCAD zu erstellen.
The "NBN" command [[Increment Build Number|increments the build number]] to create a new release version of FreeCAD.


=== CreateModule ===
=== ErstelleModul ===
The "CM" command [[Module Creation|creates a new application module]].
Der "CM" Befehl [[Module Creation/de|erzeugt ein neues Anwendungsmodul]].


{{Docnav/de
{{Docnav|Start up and Configuration|Module Creation}}
|[[Start_up_and_Configuration/de|Programmstart und Konfiguration]]

|[[Module_Creation/de|Modul Erstellung]]
[[Category:Developer Documentation]]
}}


{{Userdocnavi{{#translation:}}}}
[[Category:Developer Documentation{{#translation:}}]]
{{clear}}
{{clear}}
<languages/>

Revision as of 14:36, 25 August 2020

Übersicht

Das FreeCAD Bau Werkzeug oder fcbt ist ein Pythonskript zu finden unter

trunc/src/Tools/fcbt.py

Es kann verwendet werden, um einige häufige Aufgaben zu vereinfachen für Aufbau, Verteilung und Erweiterung von FreeCAD.

Anwendung

Mit korrekt installiertem Python, kann fcbt durch den Befehl ausgeführt werden

python fbct.py

Es zeigt ein Menü an, in dem du die Aufgabe für den Einsatz auswählen kannst, die du auswählen willst für:

FreeCAD Build Tool
 Usage:
    fcbt <command name> [command parameter]
 possible commands are:
  - DistSrc         (DS)   Build a source Distr. of the current source tree
  - DistBin         (DB)   Build a binary Distr. of the current source tree
  - DistSetup       (DI)   Build a Setup Distr. of the current source tree
  - DistSetup       (DUI)  Build a User Setup Distr. of the current source tree
  - DistAll         (DA)   Run all three above modules
  - NextBuildNumber (NBN)  Increase the Build Number of this Version
  - CreateModule    (CM)   Insert a new FreeCAD Module in the module directory
 
 For help on the modules type:
   fcbt <command name> ?

An der Eingabeaufforderung gib den abgekürzten Befehl den du anrufen möchtest ein. Gib z. B. "CM" für Ein Modul erstellen ein.

DistSrc

Der Befehl "DS" erzeugt eine Quellcode Verteilung des aktuellen Quellcode Baums.

DistBin

Der Befehl "DB" erzeugt eine Binärverteilung des aktuellen Quellcodebaums.

DistEinstellung

Der Befehl "DI" erstellt eine Einrichtungsverteilung des aktuellen Quellcodebaums.

DistEinstellung

Der Befehl "DUI" erstellt eine Benutzer Einstellverteilung des aktuellen Quellcodebaums.

DistAlles

Der Befehl "DA" führt "DS", "DB" und "DI" ALLE der Reihe nach aus.

NächsteBauNummer

Der "NBN" Befehl erhöht die Bau Nummer, um eine neue Freigabestand Version von FreeCAD zu erstellen.

ErstelleModul

Der "CM" Befehl erzeugt ein neues Anwendungsmodul.