FreeCAD Build Tool/es: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{Docnav|Start up and Configuration|Module Creation}}


{{Docnav
|[[Testing|Testing]]
|[[Continuous_Integration|Continuous Integration]]
}}

{{TOCright}}

<div class="mw-translate-fuzzy">
La '''Utilidad de construcción de FreeCAD''' (FreeCAD build tool o '''fcbt''') es un archivo de guión en Python ubicado en
La '''Utilidad de construcción de FreeCAD''' (FreeCAD build tool o '''fcbt''') es un archivo de guión en Python ubicado en
</div>
<syntaxhighlight>
{{Code|code=
trunc/src/Tools/fcbt.py
trunc/src/Tools/fcbt.py
</syntaxhighlight>
}}
Se puede utilizar para simplificar algunas tareas frecuentes de construcción, distribución y extensión de FreeCAD.
Se puede utilizar para simplificar algunas tareas frecuentes de construcción, distribución y extensión de FreeCAD.


== Utilización ==
== Utilización ==
Con [[wikipedia:Python (programming language)|Python]] correctamente instalado, ''fcbt'' se puede invocar por el comando
Con [[wikipedia:Python (programming language)|Python]] correctamente instalado, ''fcbt'' se puede invocar por el comando
{{Code|code=
<syntaxhighlight>
python fbct.py
python fbct.py
}}
</syntaxhighlight>
Muestra un menú, donde puedes seleccionar la tarea para el que lo quieres utilizar:
Muestra un menú, donde puedes seleccionar la tarea para el que lo quieres utilizar:
{{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 (Workbench) in the module directory
For help on the modules type:
For help on the modules type:
fcbt <command name> ?
fcbt <command name> ?
}}
<div class="mw-translate-fuzzy">
Introduce el nombre abreviado del comando que quieres utilizar. Por ejemplo escribe "CM" para [[Module Creation/es|crear un módulo]].
Introduce el nombre abreviado del comando que quieres utilizar. Por ejemplo escribe "CM" para [[Module Creation/es|crear un módulo]].
</div>


=== DistSrc ===
=== DistSrc ===
Line 48: Line 60:
El comando "NBN" '''incrementa el número de la construcción''' para crear una nueva versión de FreeCAD.
El comando "NBN" '''incrementa el número de la construcción''' para crear una nueva versión de FreeCAD.


<div class="mw-translate-fuzzy">
=== CreateModule ===
=== CreateModule ===
El comando "CM" [[Module Creation/es|crea un nuevo módulo de aplicación]].
El comando "CM" [[Module Creation/es|crea un nuevo módulo de aplicación]].
</div>



<div class="mw-translate-fuzzy">
{{Docnav/es|Start up and Configuration/es|Module Creation/es}}
{{Docnav/es|Start up and Configuration/es|Module Creation/es}}
</div>


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

[[Category:Developer Documentation/es]]

{{clear}}
{{clear}}

Latest revision as of 13:09, 13 August 2021

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 (Workbench) 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

El comando "DS" crea un distribución de código fuente del árbol de código fuente actual.

DistBin

El comando "DB" crea una distribución binaria del árbol de código fuente actual.

DistSetup

El comando "DI" crea una distribución de setup del árbol de código fuente actual.

DistSetup

El comando "DUI" crea una distribución de setup de usuario del árbol de código fuente actual.

DistAll

El comando "DA" executes "DS", "DB" y "DI" en secuencia.

NextBuildNumber

El comando "NBN" incrementa el número de la construcción para crear una nueva versión de FreeCAD.

CreateModule

El comando "CM" crea un nuevo módulo de aplicación.


Start up and Configuration/es
Module Creation/es