mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-08 06:45:58 +00:00
Update cheatsheets
This commit is contained in:
29
tldr/xmake
Normal file
29
tldr/xmake
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# xmake
|
||||
|
||||
> A cross-platform C & C++ build utility based on Lua.
|
||||
> More information: <https://xmake.io/#/getting_started>.
|
||||
|
||||
- Create an Xmake C project, consisting of a hello world and `xmake.lua`:
|
||||
|
||||
`xmake create --language c -P {{project_name}}`
|
||||
|
||||
- Build and run an Xmake project:
|
||||
|
||||
`xmake build run`
|
||||
|
||||
- Run a compiled Xmake target directly:
|
||||
|
||||
`xmake run {{target_name}}`
|
||||
|
||||
- Configure a project's build targets:
|
||||
|
||||
`xmake config --plat={{macosx|linux|iphoneos|...}} --arch={{x86_64|i386|arm64|...}} --mode={{debug|release}}`
|
||||
|
||||
- Install the compiled target to a directory:
|
||||
|
||||
`xmake install -o {{path/to/directory}}`
|
||||
Reference in New Issue
Block a user