xmake: add Spanish translation (#13224)

* xmake: add Spanish translation

* Update xmake.md

* Update xmake.md
pull/28/head
Darío Hereñú 2024-07-14 19:43:42 -03:00 committed by GitHub
parent 23b040e468
commit c525fee518
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 24 additions and 0 deletions

24
pages.es/common/xmake.md Normal file
View File

@ -0,0 +1,24 @@
# xmake
> Una utilidad de compilación multiplataforma C & C++ basada en Lua.
> Más información: <https://xmake.io/#/getting_started>.
- Crea un proyecto Xmake C, consistente en un hello world y `xmake.lua`:
`xmake create --language c -P {{nombre_del_proyecto}}`
- Construye y ejecuta un proyecto Xmake:
`xmake build run`
- Ejecuta directamente un objetivo Xmake compilado:
`xmake run {{nombre_del_objetivo}}`
- Configura los objetivos de compilación de un proyecto:
`xmake config --plat={{macosx|linux|iphoneos|...}} --arch={{x86_64|i386|arm64| ..}} --mode={{debug|release}}`
- Instala el objetivo compilado en un directorio:
`xmake install -o {{ruta/al/directorio}}`