C++常用库
json库
- (用的多)https://github.com/nlohmann/json
- https://github.com/simdjson/simdjson
- https://github.com/Tencent/rapidjson
- https://github.com/open-source-parsers/jsoncpp
日志库
http库
- (推荐用这个,支持很多协议)https://github.com/drogonframework/drogon
- (使用简单,仅支持http/https协议)https://github.com/yhirose/cpp-httplib
- (搜狐开源)https://github.com/sogou/workflow
- (用的多,但是文档内容太少了,编译比较麻烦)https://github.com/uNetworking/uWebSockets
- (百度开源的rpc框架)https://github.com/apache/brpc
GUI库
# 下载 https://github.com/SFML/SFML/releases/download/2.6.0/SFML-2.6.0-windows-gcc-13.1.0-mingw-64-bit.zip
# 配合 msys64 安装的MGW64编译器使用
g++ main.cpp -IC:\Users\JHL\Downloads\SFML-2.6.0-windows-gcc-13.1.0-mingw-64-bit\SFML-2.6.0\include -LC:\Users\JHL\Downloads\SFML-2.6.0-windows-gcc-13.1.0-mingw-64-bit\SFML-2.6.0\bin -lsfml-audio-2 -lsfml-graphics-2 -lsfml-network-2 -lsfml-system-2 -lsfml-window-2 -lopenal32