# bstaint-modules **Repository Path**: AbstractFactory/bstaint-modules ## Basic Information - **Project Name**: bstaint-modules - **Description**: 3rdparty library for qtcreator - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-15 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 使用 ============== 将第三方库目录和pri文件放置在同目录下,在qmake项目中使用: ``` include (E:/3rdParty/3rdparty.pri) add_deps(debug/spdlog) ``` absl-cpp ``` absl += strings include (E:/3rdParty/general/abseil-cpp.pri) ``` boost ``` boost += system include (E:/3rdParty/boost.pri) ``` #### xmake相关 ``` includes("E:/3rdparty/xmake/spdlog.lua") target("test") set_kind("binary") add_deps("spdlog") add_files('main.cpp') ```