Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 1.01 KB

File metadata and controls

61 lines (40 loc) · 1.01 KB

Build and Run

Desktop GUI

cd Desktop && cargo build --features gui
cd Desktop && cargo run --features gui

Desktop CLI (headless)

Default features are headless:

cd Desktop && cargo run

Desktop release

cd Desktop && cargo build --release --features gui

Core tests

cd Shared && cargo test -p arcadia-core

iOS framework + Swift bindings

Run after any change to ffi.rs or exported types:

bash Shared/Scripts/build-ios-framework.sh

Regenerates Mobile/iOS/ArcadiaCore/Generated/ and rebuilds ArcadiaCore.xcframework. Then open ArcadiaApp in Xcode and build.

Launcher menus

bash Shared/Scripts/Launcher.sh
pwsh  Shared/Scripts/Launcher.ps1

Global wrappers (macOS)

bash Shared/Scripts/install-global-commands-macos.sh

Installs helpers to ~/.local/bin — ensure it's on PATH.

macOS dev launcher app

cd Launchers/Development/OSX && bash build-app.sh

See Launchers/Development/OSX/README.md for details.