-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed case of client, server, built clean on cmake with standalone ne…
…tworking code
- Loading branch information
Dov Kruger
committed
Mar 30, 2024
1 parent
8e59fce
commit c35e559
Showing
5 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
*.o | ||
*.obj | ||
*.dll | ||
*.so | ||
a.out | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# How to build Grail networking subset | ||
|
||
```bash | ||
sudo apt install cmake make g++ | ||
``` | ||
|
||
In order to build this code you will need to install cmake (required version is 3.22) | ||
Also required: make g++ toolchain. | ||
This code probably works on windows (should be tested), definitely works on linux | ||
|
||
```bash | ||
mkdir build | ||
cd build | ||
cmake .. | ||
|
||
``` |
File renamed without changes.
File renamed without changes.