We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a29352f commit e4d9ee2Copy full SHA for e4d9ee2
README.md
@@ -10,7 +10,7 @@ Welcome to the example C++ plugin for Endstone servers.
10
11
### Linux
12
13
-- Clang 5 or higher
+- Clang 15 or higher
14
- libc++ installed
15
16
## Structure Overview
@@ -46,7 +46,16 @@ cpp-example-plugin/
46
47
3. **Build Your Plugin**
48
49
- ```bash
+ **Windows:**
50
+ ```shell
51
+ mkdir build
52
+ cd build
53
+ cmake ..
54
+ cmake --build . --config Release
55
+ ```
56
+
57
+ **Linux:**
58
59
mkdir build
60
cd build
61
cmake -DCMAKE_BUILD_TYPE=Release ..
0 commit comments