# dev_project **Repository Path**: ilooktech/dev_project ## Basic Information - **Project Name**: dev_project - **Description**: No description available - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-07-30 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Dev Project ## 编译顺序 1. 在顶层新建bin目录。 2. 进入根目录下。使用cmake进行configuration和generation之后(如指定where to bulid the binaries目录为build目录),使用make编译。 编译的模块的动态链接库及可执行文件会生成到顶层的bin目录下。 ## 文件夹结构 * bin 编译生成的动态链接库及可执行文件 * cmake_modules cmake查询需要的文件 * include 头文件,模块编译后会自动复制到此 * lib 库文件 (对应windows,linux下无内容) * src 源文件 * libs 模块 * tests 可执行程序,模块的测试程序