Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yappy2000d/rpg-game
OOP Final Project
https://github.com/yappy2000d/rpg-game
Last synced: about 7 hours ago
JSON representation
OOP Final Project
- Host: GitHub
- URL: https://github.com/yappy2000d/rpg-game
- Owner: yappy2000d
- Created: 2023-11-16T10:49:57.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-05T03:32:47.000Z (10 months ago)
- Last Synced: 2024-01-05T04:23:18.505Z (10 months ago)
- Language: C++
- Size: 806 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RPG-Game
![CMake](https://img.shields.io/badge/cmake%203.26.4-%23008FBA.svg?style=for-the-badge&logo=cmake&logoColor=white)
![C++](https://img.shields.io/badge/c++%2017-%2300599C.svg?style=for-the-badge&logo=c%2B%2B&logoColor=white)OOP Final Project
## Running on CodeSpace
```bash
cmake --version
sudo apt remove cmake
cd /opt/
wget https://github.com/Kitware/CMake/releases/download/v3.26.5/cmake-3.26.5-linux-x86_64.sh
chmod +x /opt/cmake-3.26.5-linux-x86_64.sh
sudo bash /opt/cmake-3.26.5-linux-x86_64.sh
sudo ln -s /opt/cmake-3.26.5-linux-x86_64/bin/* /usr/bin
cd /workspaces/RPG-Game/
cmake --versioncmake .
cmake --build .
```## Running on Windows
install following dependent packages by Cygwin:
+ gcc-g++ 11.4.0-1
+ cmake 3.25.3-1
+ make 4.4.1-2 (TBC)```batch
cmake -S . -B Build
cmake --build Build
```