This repo is not used anymore. Development of Orca was moved here: https://github.com/orca-app/orca https://orca-app.dev/
Go to file
martinfouilleul f5f7c5d8ff [wip, win32] wip implementing missing win32 platform functions 2023-06-16 20:07:26 +02:00
ext/wasm3 puling logging functionality from milepost into orca 2023-04-18 18:06:47 +02:00
milepost@e93bf76adc [wip, win32] wip implementing missing win32 platform functions 2023-06-16 20:07:26 +02:00
resources First draft of in-app debug console 2023-04-20 15:47:18 +02:00
samples/pong Sanbox file IO to app data directory with IO_OP_OPEN_AT and FILE_OPEN_RESTRICT 2023-06-11 18:21:04 +02:00
scripts [io] check that file path doesn't escape app's local data folder when opening files 2023-05-11 19:42:12 +02:00
sdk re-integrating file IO with common platform API 2023-06-09 17:28:33 +02:00
src [wip, win32] wip implementing missing win32 platform functions 2023-06-16 20:07:26 +02:00
.gitignore Adding printing functions and asserts 2023-04-18 10:46:02 +02:00
.gitmodules Migrating milepost submodule to HMN gitea 2023-04-26 15:31:00 +02:00
Readme.md update readme and angle install notes 2023-04-26 15:59:03 +02:00
build.bat [win32, build] first iteration on build script for win32 2023-06-16 19:57:19 +02:00
build.sh [file io, wip] open/close file API 2023-05-11 19:42:12 +02:00

Readme.md

Install

Clone the repo with the --recurse-submodules option.

Get and build ANGLE (see milepost/ext/angle_install_notes.md), and put libEGL.dylib and libGLESv2.dylib in milepost/bin.

Cd to orca and build milepost (the platform layer), wasm3 (the wasm runtime), then orca:

cd Orca
./build.sh milepost
./build.sh wasm3
./build.sh orca

Build the sample orca app:

pushd samples/pong ; ./build.sh ; popd

This creates a Pong.app bundle in samples/pong that you can double click to run.

You can also build milepost example apps like so:

cd milepost
pushd examples/canvas ; ./build.sh ; popd
pushd examples/perf_text ; ./build.sh ; popd
pushd examples/tiger ; ./build.sh ; popd