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)
(21 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{Docnav/de|[[Start up and Configuration/de|Programmstart und Konfiguration]]|[[Module Creation/de|Modul-Erstellung]]}}


{{Docnav/de
Das '''FreeCAD build tool''' oder '''fcbt''' ist ein Python-script zu finden unter
|[[Start_up_and_Configuration/de|Programmstart und Konfiguration]]
<syntaxhighlight>
|[[Module_Creation/de|Modul Erstellung]]
trunc/src/Tools/fcbt.py
}}
</syntaxhighlight>

{{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.
Es kann verwendet werden, um einige häufige Aufgaben zu vereinfachen für Aufbau, Verteilung und Erweiterung von FreeCAD.


== Benutzung ==
== Anwendung ==
Mit korrekt installiertem [http://de.wikipedia.org/wiki/Python_%28Programmiersprache%29 Python], kann der ''fcbt''-befehl an der Eingabezeile so ausgeführt werden
Mit korrekt installiertem [http://de.wikipedia.org/wiki/Python_%28Programmiersprache%29 Python], kann ''fcbt'' durch den Befehl ausgeführt werden
{{Code|code=
<syntaxhighlight>
python fbct.py
python fbct.py
}}
</syntaxhighlight>
Es öffnet sich ein Menü, in dem Sie die Aufgabe für den Einsatz auswählen können, die Sie wollen:
Es zeigt ein Menü an, in dem du die Aufgabe für den Einsatz auswählen kannst, die du auswählen willst für:
{{Code|code=
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
- DistBin (DB) Build a binary Distr. of the current source tree
- DistSrc (DS) Build a source Distr. of the current source tree
- DistSetup (DI) Build a Setup Distr. of the current source tree
- DistBin (DB) Build a binary Distr. of the current source tree
- DistSetup (DUI) Build a User Setup Distr. of the current source tree
- DistSetup (DI) Build a Setup Distr. of the current source tree
- DistAll (DA) Run all three above modules
- 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
- 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> ?
}}
Am Eingabepromt geben den abgekürzten Befehl den Sie anrufen möchten ein.
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" '''creates a source distribution''' of the current source tree.
Der Befehl "DS" '''erzeugt eine Quellcode Verteilung''' des aktuellen Quellcode Baums.


=== DistBin ===
=== DistBin ===
Der Befehl "DB" '''creates a binary distribution''' of the current source tree.
Der Befehl "DB" '''erzeugt eine Binärverteilung''' des aktuellen Quellcodebaums.


=== DistSetup ===
=== DistEinstellung ===
Der Befehl "DI" '''creates a setup distribution''' of the current source tree.
Der Befehl "DI" '''erstellt eine Einrichtungsverteilung''' des aktuellen Quellcodebaums.


=== DistSetup ===
=== DistEinstellung ===
Der Befehl "DUI" '''creates a user setup distribution''' of the current source tree.
Der Befehl "DUI" '''erstellt eine Benutzer Einstellverteilung''' des aktuellen Quellcodebaums.


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


=== NextBuildNumber ===
=== NächsteBauNummer ===
Der "NBN" Befehl '''increments the build number''' erstellt eine neue Release-version von FreeCAD.
Der "NBN" Befehl '''erhöht die Bau Nummer''', um eine neue Freigabestand Version von FreeCAD zu erstellen.

=== CreateModule ===
Der "CM" Befehl [[Module Creation|creates a new application module]].

{{Docnav/de|Start up and Configuration/de|Module Creation/de}}


=== ErstelleModul ===
{{Userdocnavi}}
Der "CM" Befehl [[Module Creation/de|erzeugt ein neues Anwendungsmodul]].


{{Docnav/de
[[Category:Developer Documentation/de]]
|[[Start_up_and_Configuration/de|Programmstart und Konfiguration]]
|[[Module_Creation/de|Modul Erstellung]]
}}


{{Userdocnavi{{#translation:}}}}
[[Category:Developer Documentation{{#translation:}}]]
{{clear}}
{{clear}}

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.