FreeCAD Build Tool/es: Difference between revisions

From FreeCAD Documentation
(Created page with "Muestra un menú, donde puedes seleccionar la tarea para el que lo quieres utilizar:")
(Created page with "Introduce el nombre abreviado del comando que quieres utilizar. Por ejemplo escribe "CM" para crear un módulo.")
Line 25: Line 25:
For help on the modules type:
For help on the modules type:
fcbt <command name> ?
fcbt <command name> ?
At the input promt enter the abbreviated command you want to call. For example type "CM" for [[Module Creation|creating a module]].
Introduce el nombre abreviado del comando que quieres utilizar. Por ejemplo escribe "CM" para [[Module Creation/es|crear un módulo]].


=== DistSrc ===
=== DistSrc ===

Revision as of 19:02, 16 October 2014

La Utilidad de construcción de FreeCAD (FreeCAD build tool o fcbt) es un archivo de guión en Python ubicado en

 trunc/src/Tools/fcbt.py

Se puede utilizar para simplificar algunas tareas frecuentes de construcción, distribución y extensión de FreeCAD.

Utilización

Con Python correctamente instalado, fcbt se puede invocar por el comando

 python fbct.py

Muestra un menú, donde puedes seleccionar la tarea para el que lo quieres utilizar:

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

Introduce el nombre abreviado del comando que quieres utilizar. Por ejemplo escribe "CM" para crear un módulo.

DistSrc

The command "DS" creates a source distribution of the current source tree.

DistBin

The command "DB" creates a binary distribution of the current source tree.

DistSetup

The command "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

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.

Start up and Configuration
Module Creation