FreeCAD Build Tool/de: Difference between revisions

From FreeCAD Documentation
m (to categories Developer Documentation; correct languages)
No edit summary
 
(54 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<languages/>
Das '''FreeCAD build tool''' oder '''fcbt''' ist ein Python-script zu finden unter

trunc/src/Tools/fcbt.py
{{Docnav/de
|[[Testing/de|Erprobung]]
|[[Continuous_Integration/de|Kontinuierliche Integration]]
}}

{{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=
python fbct.py
python fbct.py
Es öffnet sich ein Menü, in dem Sie die Aufgabe für den Einsatz auswählen können, die Sie wollen:
}}
FreeCAD Build Tool
Es zeigt ein Menü an, in dem du die Aufgabe für den Einsatz auswählen kannst, die du auswählen willst für:
Usage:
{{Code|code=
fcbt <command name> [command parameter]
FreeCAD Build Tool
possible commands are:
Usage:
- DistSrc (DS) Build a source Distr. of the current source tree
fcbt <command name> [command parameter]
- DistBin (DB) Build a binary Distr. of the current source tree
possible commands are:
- DistSetup (DI) Build a Setup Distr. of the current source tree
- DistSetup (DUI) Build a User Setup Distr. of the current source tree
- DistSrc (DS) Build a source Distr. of the current source tree
- DistAll (DA) Run all three above modules
- DistBin (DB) Build a binary Distr. of the current source tree
- NextBuildNumber (NBN) Increase the Build Number of this Version
- DistSetup (DI) Build a Setup Distr. of the current source tree
- CreateModule (CM) Insert a new FreeCAD Module in the module directory
- 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 (Workbench) 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 [[Workbench_creation/de|Erstellung von Arbeitsbereichen]] ein.


=== DistSrc ===
=== DistSrc ===
Der Befehl "DS" '''erzeugt eine Quellcode Verteilung''' des aktuellen Quellcode Baums.
Der Befehl "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.
Der Befehl "DB" [[Create Binary Distibution|creates a binary distribution]] of the current source tree.


=== DistSetup ===
=== DistEinstellung ===
Der Befehl "DI" '''erstellt eine Einrichtungsverteilung''' des aktuellen Quellcodebaums.
Der Befehl "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.
Der Befehl "DUI" [[Create User Setup Distribution|creates a user setup distribution]] of the current source tree.


=== 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 [[Increment Build Number|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 ===
=== ErstelleModul ===
Der "CM" Befehl [[Module Creation|creates a new application module]].
Der "CM" Befehl [[Workbench_creation/de|erzeugt ein neues Anwendungsmodul (Arbeitsbereich)]].


{{Docnav/de|Start up and Configuration|Ein Programm-modul hinzufügen}}


{{Docnav/de
{{languages/de | {{en|FreeCAD Build Tool}} {{es|FreeCAD Build Tool/es}} {{fr|FreeCAD Build Tool/fr}} {{it|FreeCAD Build Tool/it}} {{jp|FreeCAD Build Tool/jp}} {{ru|FreeCAD Build Tool/ru}} {{se|FreeCAD Build Tool/se}} }}
|[[Testing/de|Erprobung]]
|[[Continuous_Integration/de|Kontinuierliche Integration]]
}}


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

Latest revision as of 18:29, 16 August 2021

Ü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 (Workbench) 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 Erstellung von Arbeitsbereichen 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 (Arbeitsbereich).