FreeCAD Build Tool/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "=== DistBin === Polecenie "DB" '''tworzy binarną dystrybucję''' bieżącego drzewa źródeł.")
(Created page with "=== DistSetup === Polecenie "DI" '''tworzy dystrybucję konfiguracji''' bieżącego drzewa źródeł.")
Line 46: Line 46:


=== DistSetup ===
=== DistSetup ===
Polecenie "DI" '''tworzy dystrybucję konfiguracji''' bieżącego drzewa źródeł.
The command "DI" '''creates a setup distribution''' of the current source tree.


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

Revision as of 13:50, 20 March 2024

Przegląd

FreeCAD Narzędzie do kompilacji lub FreeCAD build tool (fcbt) jest skryptem Python znajdującym się pod adresem:

trunc/src/Tools/fcbt.py

Może być używany do uproszczenia niektórych częstych zadań w budowaniu, dystrybucji i rozszerzaniu FreeCAD.

Użycie

Z prawidłowo zainstalowanym środowiskiem Python, fcbt może być wywołane poleceniem:

python fbct.py

Wyświetla menu, w którym można wybrać zadanie, do którego ma być używana:

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

W wierszu poleceń wpisz skrót polecenia, które chcesz wywołać. Na przykład wpisz "CM" dla Tworzenie środowiska pracy.

DistSrc

Polecenie "DS" tworzy dystrybucję źródła bieżącego drzewa źródeł.

DistBin

Polecenie "DB" tworzy binarną dystrybucję bieżącego drzewa źródeł.

DistSetup

Polecenie "DI" tworzy dystrybucję konfiguracji bieżącego drzewa źródeł.

DistSetup

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

DistAll

The command "DA" executes "DS", "DB" and "DI" in sequence.

NextBuildNumber

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

CreateModule

The "CM" command creates a new application module (Workbench).