https://github.com/sharkwouter/directory-iterator-psp
A simple test of the directory_iterator class in std::filesystem on the Playstation Portable
https://github.com/sharkwouter/directory-iterator-psp
Last synced: about 2 months ago
JSON representation
A simple test of the directory_iterator class in std::filesystem on the Playstation Portable
- Host: GitHub
- URL: https://github.com/sharkwouter/directory-iterator-psp
- Owner: sharkwouter
- License: unlicense
- Created: 2024-03-28T08:20:42.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-28T08:29:47.000Z (about 2 years ago)
- Last Synced: 2025-03-02T07:35:56.104Z (over 1 year ago)
- Language: C++
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# std::filesystem::directory_iterator test for Playstation Portable
This is a simple test which works on both PC and PSP for testing the std::filesystem::directory_iterator class. It should just print the files in the current directory to the screen.
## Building
### PSP
This one requires upstream SDL2.
```
mkdir psp && cd psp
psp-cmake ..
make
```
### PC
```
mkdir build && cd build
cmake ..
make