Skip to content

Commit a1f0293

Browse files
authored
Merge pull request #1940 from Forceh91/patch-1
chore: create readme with community examples
2 parents b62b506 + e23f9d0 commit a1f0293

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/linux-toolchain.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ jobs:
2626
- name: Build OpenBIOS with it
2727
run: make -C src/mips/openbios -j 6 all
2828
- name: Build psyqo examples with it
29-
run: for d in src/mips/psyqo/examples/* src/mips/psyqo-paths/examples/* src/mips/psyqo-lua/examples/* ; do make -C $d -j 6 all TEST=true ; done
29+
run: for d in src/mips/psyqo/examples/* src/mips/psyqo-paths/examples/* src/mips/psyqo-lua/examples/*; do if [ -d "$d" ]; then make -C "$d" -j 6 all TEST=true; fi; done

src/mips/psyqo/examples/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## See Also
2+
3+
The following list contains community-made examples which have made use of various aspects of psyqo.
4+
5+
| Example | Author | Description
6+
| :--- | :--- | :---
7+
| [psyqo-cdrom-cube](https://github.com/Forceh91/psyqo-cdrom-cube) | [Forceh91](https://github.com/forceh91) | This example attempts to give a real-world example of loading a model off of the CD-ROM for rendering

0 commit comments

Comments
 (0)