Skip to content

Commit

Permalink
docs: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-vincent committed Mar 13, 2024
1 parent 97b2f05 commit 2a2374d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15)

project(endstone_cpp_example_plugin CXX)
project(endstone_example_plugin CXX)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,16 @@ cpp-example-plugin/
cmake --build .
```

This process will compile your code and produce a shared library that Endstone can load.
This process will compile your code and produce a shared library that Endstone servers can load.

**Note: If you wish to build against a specific version of Endstone, you can modify the `GIT_TAG` in
the `CMakeLists.txt` file to point to the desired tag or commit.**

4. **Test Your Plugin**

Once built, copy the output binary `endstone_cpp_example_plugin.dll` (Windows)
or `endstone_cpp_example_plugin.so` (Linux) to the `plugins` directory of your Endstone server. Start the
Endstone server and check the logs to ensure your plugin loads and operates as expected.
Once built, copy the output binary `endstone_example_plugin.dll` (Windows) or `endstone_example_plugin.so` (Linux) to
the `plugins` directory of your Endstone server. Start the Endstone server and check the logs to ensure your plugin
loads and operates as expected.

## Documentation

Expand Down

0 comments on commit 2a2374d

Please sign in to comment.