https://github.com/yappy2000d/rpg-game
OOP Final Project
https://github.com/yappy2000d/rpg-game
Last synced: 5 months ago
JSON representation
OOP Final Project
- Host: GitHub
- URL: https://github.com/yappy2000d/rpg-game
- Owner: yappy2000d
- Created: 2023-11-16T10:49:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-05T03:32:47.000Z (over 2 years ago)
- Last Synced: 2024-12-30T21:18:21.051Z (over 1 year 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


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 --version
cmake .
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
```