
build
by nx-std
SKILL.md
name: build description: Configure, reconfigure, and build targets in the nx-std monorepo using just tasks. Use when configuring build options, reconfiguring an existing build, or compiling NRO files and other build artifacts. allowed-tools: Bash(just --list:), Bash(just configure:), Bash(just reconfigure:), Bash(just list-targets:), Bash(just list-options:), Bash(just list-options-configured:), Bash(just list-dependencies:), Bash(just build:), Bash(just meson-compile:), Bash(just compile:), Bash(just build-tests:*)
Build Target Skill
MANDATORY: Use just tasks for all build operations in this project.
Important: This is a Meson Project
This project uses the Meson build system with Cargo integration. Configuration must be done first before building any targets.
Initial Configuration
If buildDir/ doesn't exist (first time setup):
just configure
This runs meson setup buildDir with default options from meson.options.
With options:
just configure -Duse_nx=enabled
Reconfiguring an Existing Build
If buildDir/ already exists and you need to change options, use reconfigure:
just reconfigure -Duse_nx=enabled -Duse_nx_sf=disabled
This runs meson setup --reconfigure to update the existing configuration.
When to use which:
just configure- First time setup, or afterjust clean-alljust reconfigure- Changing options on an already-configured build
Listing Available Options
List all project options (from meson.options):
just list-options
List currently configured options (requires configured build):
just list-options-configured
Configuring with Options
Configure with specific options:
just configure -Duse_nx=enabled
Configure with multiple options:
just configure -Duse_nx=enabled -Duse_libnx_dkp=disabled
Tip: Run just list-options first to see available options and their defaults.
Listing Available Targets
After configuration, list available targets to see what can be compiled:
just list-targets
This shows all build targets with their names, types, and locations.
Building a Target
Primary command: just build <target-name>
Aliases: just meson-compile <target-name> or just compile <target-name>
Examples
Build hbmenu:
just build hbmenu.nro
Build tests:
just build nx-tests.nro
Or use the dedicated test task:
just build-tests
Build multiple targets:
just build hbmenu.nro nx-tests.nro
Build all targets (no arguments):
just build
Critical Rules
- Configure first - Run
just configurebefore building ifbuildDir/doesn't exist - Reconfigure to change options - Use
just reconfigurewhenbuildDir/already exists - NEVER use
ninjadirectly - always usejust build - NEVER use
meson compiledirectly - always usejust build - NEVER use
meson setupdirectly - always usejust configureorjust reconfigure - List targets first if unsure what can be built
- Use exact target names from
just list-targetsoutput
Build Output
Build artifacts are located in:
buildDir/- Meson output (NRO/NSP bundles, C objects, ELF files)buildDir/cargo-target/- Rust compilation artifacts
Complete Workflow
-
Initial setup (first time or clean build):
just list-options # See available options just configure -Duse_nx=enabled # Configure with desired options -
List targets (if unsure):
just list-targets -
Build target:
just build <target-name> -
Verify build (check for symbol overrides):
/opt/devkitpro/devkitA64/bin/aarch64-none-elf-nm buildDir/path/to/file.elf | rg '__nx_' -
Deploy (if building NRO):
just deploy buildDir/path/to/file.nro
Reconfiguring
To change build options after initial configuration, use reconfigure:
just reconfigure -Duse_nx=disabled
To clean and start fresh:
just clean-all
just configure -Duse_nx=enabled
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です