forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
qmake: add Spanish translation (tldr-pages#15518)
Co-authored-by: Sebastiaan Speck <[email protected]>
- Loading branch information
1 parent
5f97c3a
commit d30eedb
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# qmake | ||
|
||
> Genera Makefiles a partir de archivos de proyecto Qt. | ||
> Más información: <https://doc.qt.io/qt-6/qmake-manual.html>. | ||
- Genera un `Makefile` a partir de un archivo de proyecto en el directorio actual: | ||
|
||
`qmake` | ||
|
||
- Especifica la ubicación del `Makefile` y del archivo de proyecto: | ||
|
||
`qmake -o {{ruta/a/Makefile}} {{ruta/al/archivo_de_proyecto.pro}}` | ||
|
||
- Genera un archivo de proyecto por defecto: | ||
|
||
`qmake -project` | ||
|
||
- Compila un proyecto: | ||
|
||
`qmake && make` | ||
|
||
- Activa el modo de depuración: | ||
|
||
`qmake -d` |