Skip to content

Commit

Permalink
Install QML extensions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ASxa86 committed Apr 4, 2024
1 parent 990f3f4 commit ce9367a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"ms-vscode.cmake-tools",
"twxs.cmake",
"ms-vscode.cpptools",
"ms-vscode.cpptools-extension-pack"
"ms-vscode.cpptools-extension-pack",
"bbenoist.QML"
]
}
},
Expand Down
4 changes: 4 additions & 0 deletions .devcontainer/postcreate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ sdkmanager "emulator"
sdkmanager "system-images;android-33;google_apis;x86_64"
apt install -y libpulse-dev

if [ ! -d "$WORKSPACE_DIR/avd" ]; then
mkdir $WORKSPACE_DIR/avd
fi

echo "avdmanager create avd -n pixel5 -k \"system-images;android-33;google_apis;x86_64\" -d \"pixel_5\" -p \"$WORKSPACE_DIR/avd\""
avdmanager create avd -n pixel5 -f -k "system-images;android-33;google_apis;x86_64" -d "pixel_5" -p "$WORKSPACE_DIR/avd"
emulator -avd pixel5
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,12 @@ Personal Integration and Rendering Engine
This repository contains a collection of game engine libraries and utilities developed using modern software engineering principals and design.

# Table of Contents


# Android

To run:

```shell
/workspaces/aspire# emulator -avd pixel5 -gpu host
```

0 comments on commit ce9367a

Please sign in to comment.