Lighter, Faster, Stronger
iOS Build Commands
kxbuild is an iOS compiler that can directly parse various iOS projects, including Xcode and Swift
projects, and complete the full build process from code to IPA with simple commands.
Command Prompt - kxbuild
C:\Users\Dev>
kxbuild --help
// Available Commands:
build
Build your project with custom options
list
List all current projects or workspaces
showsdks
Display list of currently installed SDKs
version
View version and underlying engine info
Core Command Details
Build Project
Supports complex build workflows, including cache cleaning, architecture specification, Archive exporting, and automatic deployment to real devices.
-
--targetSpecify the target to build -
--archSet architecture (arm64 / x86_64) -
--cleanClean cache before building
-
-i, --installInstall after build -
--configurationConfig (Debug/Release)
# Typical Example: Build and Install Release version
kxbuild build --target MyApp --configuration Release --clean --install
kxbuild build --target MyApp --configuration Release --clean --install
Project Inspection
Use list to view all Schemes and Targets in the current directory. Pair with the
--src flag to list all source code files.
kxbuild list --src
Env Queries
showsdks lists all available iOS/Simulator SDKs. showBuildSettings prints
detailed compilation variables.
kxbuild showsdks