2023-08-09 10:18:52 +00:00
|
|
|
# Installing
|
2023-04-26 13:59:03 +00:00
|
|
|
|
2023-08-09 10:18:52 +00:00
|
|
|
Clone the repo: `git clone git@git.handmade.network:hmn/orca.git`.
|
2023-04-26 13:59:03 +00:00
|
|
|
|
2023-08-09 10:18:52 +00:00
|
|
|
Cd to orca and build the runtime:
|
2023-04-26 13:59:03 +00:00
|
|
|
|
|
|
|
```
|
2023-08-09 10:18:52 +00:00
|
|
|
cd orca
|
|
|
|
./orca dev build-runtime
|
2023-04-26 13:59:03 +00:00
|
|
|
```
|
|
|
|
|
2023-08-09 10:18:52 +00:00
|
|
|
Install the orca tools:
|
|
|
|
|
2023-04-26 13:59:03 +00:00
|
|
|
```
|
2023-08-09 10:18:52 +00:00
|
|
|
./orca dev install
|
2023-04-26 13:59:03 +00:00
|
|
|
```
|
|
|
|
|
2023-08-09 10:18:52 +00:00
|
|
|
# Building the sample orca apps:
|
|
|
|
|
|
|
|
Cd to the sample project directory and run its build script:
|
2023-04-26 13:59:03 +00:00
|
|
|
|
|
|
|
```
|
2023-08-09 10:18:52 +00:00
|
|
|
cd samples/pong
|
|
|
|
./build.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
On macOS this creates a `Pong.app` bundle in `samples/pong` that you can double click to run.
|
|
|
|
On Windows this creates a `Pong` directory in `samples/pong`. You can launch the app by running `Pong/bin/orca.exe`.
|