FreeCAD Build Tool/de: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 34: Line 34:


=== DistSetup ===
=== DistSetup ===
The command "DI" '''creates a setup distribution''' of the current source tree.
Der Befehl "DI" '''creates a setup distribution''' of the current source tree.


=== DistSetup ===
=== DistSetup ===

Revision as of 17:32, 13 March 2016

Das FreeCAD build tool oder fcbt ist ein Python-script 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.

Benutzung

Mit korrekt installiertem Python, kann der fcbt-befehl an der Eingabezeile so ausgeführt werden

 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
 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> ?

Am Eingabepromt geben den abgekürzten Befehl den Sie anrufen möchten ein.

DistSrc

Der Befehl "DS" creates a source distribution of the current source tree.

DistBin

Der Befehl "DB" creates a binary distribution of the current source tree.

DistSetup

Der Befehl "DI" creates a setup distribution of the current source tree.

DistSetup

The command "DUI" creates a user setup distribution of the current source tree.

DistAll

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

NextBuildNumber

The "NBN" command increments the build number to create a new release version of FreeCAD.

CreateModule

Der "CM" Befehl creates a new application module.

Start up and Configuration/de
Module Creation/de