forked from rich/ReWalker
updated to make README look more like other Redacted project READMEs!
This commit is contained in:
36
README.md
36
README.md
@@ -1,9 +1,41 @@
|
||||
# ReWalker
|
||||
ReWalker is a simple random walker program that uses ReWindow to handle windowing and mouse operations.
|
||||
|
||||
This is a simple random walker that has a little twist that if the user clicks the mouse over the window it "blows" the walker away from the mouse pointer.
|
||||
This is a simple random walker that has a little twist that if the user clicks the mouse over the window it "blows" the walker away from the mouse pointer -- NOT IMPLEMENTED YET
|
||||
|
||||
test.cpp builds to TestWindowApp as a test to help me understand how ReWindow works.
|
||||
|
||||
main.cpp builds to ReWalkerApp which is the main random walker program.
|
||||
|
||||
Thanks to Bill, Josh and Maxine for sorting the correct ReWindow Integration.
|
||||
|
||||
## Run ReWalker
|
||||
|
||||
|
||||
Install dependencies
|
||||
|
||||
```bash
|
||||
Fedora/RHEL: dnf install cmake make gcc-g++ libX11 libX11-devel mesa-libGL-devel
|
||||
Ubuntu/Debian: apt-get install cmake make gcc g++ libx11-6 libx11-dev libgl-dev libxrandr-dev
|
||||
```
|
||||
|
||||
Clone the repository
|
||||
|
||||
```bash
|
||||
git clone https://git.redacted.cc/rich/ReWalker.git
|
||||
```
|
||||
|
||||
Build
|
||||
|
||||
```bash
|
||||
cd ReWalker && mkdir build && cd build && cmake .. && make
|
||||
```
|
||||
|
||||
Run it
|
||||
|
||||
```bash
|
||||
./TestWindowApp
|
||||
./ReWalkerApp
|
||||
```
|
||||
## Thanks
|
||||
|
||||
Thanks to Bill, Josh and Maxine for sorting the correct ReWindow Integration, and other things.
|
Reference in New Issue
Block a user