ectopad

(★ 44)

Metroid Prime through Metaforce, native and optimized for MacOS, iOS, and iPadOS

File Explorer

  • .gitignore
  • README.md
  • THIRD_PARTY_NOTICES.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

cmake

View Details ▼

Cross-platform build automation system, that generates recipes for native build systems.

cmake {{path/to/project_directory}}

Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:

cmake --build {{path/to/build_directory}}

Use a generated recipe in a given directory to build artifacts:

cmake --install {{path/to/build_directory}} --strip

Install the build artifacts into `/usr/local/` and strip debugging symbols:

🔍

codesign

View Details ▼

Create and manipulate code signatures for macOS.

codesign --sign "{{My Company Name}}" {{path/to/application_file.app}}

Sign an application with a certificate:

codesign --verify {{path/to/application_file.app}}

Verify the certificate of an application:

🔍

xcrun

View Details ▼

Run or locate development tools and properties.

xcrun {{tool}} {{arguments}}

Find and run a tool from the active developer directory:

xcrun {{tool}} {{arguments}} --verbose

Show verbose output:

xcrun --sdk {{sdk_name}}

Find a tool for a given SDK:

// repository documentation