Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryp/psp2example
Homebrew example using cmake
https://github.com/ryp/psp2example
Last synced: 12 days ago
JSON representation
Homebrew example using cmake
- Host: GitHub
- URL: https://github.com/ryp/psp2example
- Owner: Ryp
- License: mit
- Created: 2015-06-29T22:17:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-30T12:14:34.000Z (over 9 years ago)
- Last Synced: 2023-08-02T08:25:44.283Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 133 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PSP2 Homebrew example
Homebrew sample using cmake.
Dependencies:
* arm-none-gcc compiler (also found in devkitARM)
* psp2sdk [via cmake branch](https://github.com/psp2dev/psp2sdk/tree/cmake)
* [psp2lib](https://github.com/psp2dev/psp2lib)## Compiling
```shell
$ mkdir build && cd build
$ cmake .. -DCMAKE_TOOLCHAIN_FILE=$PSP2SDK/cmake/toolchain-arm-none-eabi-psp2.cmake -DCMAKE_BUILD_TYPE=Debug
$ make
```## Credits
Thanks to [xerpi](https://github.com/xerpi) for his vitahelloworld !