Skip to content

Commit

Permalink
Gui wip (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdb30 authored Jan 17, 2025
1 parent 188da66 commit 30f3e48
Show file tree
Hide file tree
Showing 19 changed files with 10,561 additions and 1,263 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- name: Install bevy linux dependencies
run: sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
runs-on: ${{ matrix.platform.os }}

steps:
- name: Install bevy linux dependencies
run: sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev
if: contains(matrix.platform.os, 'ubuntu')
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
Expand Down
49 changes: 49 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'example'",
"cargo": {
"args": [
"build",
"--bin=vpxtool",
"--package=vpxtool"
],
"filter": {
"name": "vpxtool",
"kind": "bin"
}
},
"args": [
// "user_arg1",
// "user_arg2"
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'example'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=vpxtool",
"--package=vpxtool"
],
"filter": {
"name": "vpxtool",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading

0 comments on commit 30f3e48

Please sign in to comment.