Skip to content

Latest commit

 

History

History
48 lines (43 loc) · 1.48 KB

README.md

File metadata and controls

48 lines (43 loc) · 1.48 KB

Baseee

Line GitHub GitHub repo size C++ Version Github Actions Tag Version PreRelease Version Release Version


English


Baseee是一个跨平台c++程序库
旨在扩展c++
本项目分为以下模块:

  • log 日志
  • string 字符串处理
  • parser 各种解析器
  • components 各种工具 欢迎捐款or贡献代码

Build

Baseee可以在很多平台构建,使用Cmake构建系统

$ git clone https://github.com/chhdao/Baseee --depth=1
$ cd Baseee/baseee
$ mkdir Build
$ cd Build
$ cmake ..
$ cmake --build .
$ cmake --install .

即可完成源码安装。

你也可以使用Vcpkg:

$ vcpkg install baseee

最后,将下面的内容加入你的CMakeLists.txt

find_package(Baseee CONFIG REQUIRED)
target_link_libraries(main PRIVATE baseee::baseee)

文档
Enjoy!