Skip to content

Commit

Permalink
Move build instructions to BUILDING.md
Browse files Browse the repository at this point in the history
this is all handled by Github Actions so we probably don't need this anymore but it's good to keep around
  • Loading branch information
rafraser authored May 20, 2021
1 parent 6c0cad5 commit 3a66bac
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions BUILDING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
### Windows
1. Open Visual Studio 2019 and clone this repository
2. The default configuration should be "x86-Release" for the 32bit version\
If you want the 64bit version select the "x64-Release" configuration
3. Select `Build` -> `Build All`
4. The .dll should now be in `gmod-discord-rpc/cpp/build/\*-Release/`

### Linux
1. Make sure you have git, cmake, and gcc installed
2. Open a terminal and run
```git clone https://github.com/fluffy-servers/gmod-discord-rpc --recursive
cd gmod-discord-rpc/cpp
mkdir build && cd build
cmake .. && cmake --build .
```
3. The .dll should now be in `gmod-discord-rpc/cpp/build/`

0 comments on commit 3a66bac

Please sign in to comment.