mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-21 04:49:14 +12:00
Add external libraries
This commit is contained in:
parent
70f443b06e
commit
e8dc11cc31
17 changed files with 2010 additions and 0 deletions
17
third_party/open-bp-cpp/README.md
vendored
Normal file
17
third_party/open-bp-cpp/README.md
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
# buttplugCpp
|
||||
## How to use
|
||||
I made this project in Visual Studio 2022, but it uses CMake. I currently am struggling to get a proper library CMake going, so simply include the src and include directories in your project and add them with:
|
||||
```
|
||||
file(GLOB SRC_FILES
|
||||
"src/*.cpp"
|
||||
"include/*.h"
|
||||
)
|
||||
|
||||
target_sources(buttplugCpp PUBLIC
|
||||
${SRC_FILES}
|
||||
)
|
||||
```
|
||||
in your CMake file. Also make sure to build IXWebSockets (without zlib, unless you want to deal with getting it working with CMake). Nlohmann Json dependency is handled by Hunter, so make sure you have Hunter in your project too. I provide an example CMake file which makes the example program in example directory.
|
||||
|
||||
## More info
|
||||
Currently this library was tested (not very extensively) with Linux and Windows. The C++ version is C++11. This library and its documentation is still WIP.
|
Loading…
Add table
Add a link
Reference in a new issue