# plan-ref **Repository Path**: passerjia02/plan-ref ## Basic Information - **Project Name**: plan-ref - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-19 - **Last Updated**: 2025-08-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 样条曲线参考线生成 ## conan2交叉编译配置 ```sh conan profile detect --name # 创建并编写配置文件 ~/.conan2/profiles/ [settings] os=Linux arch=x86_64 compiler=gcc compiler.version=13 compiler.cppstd=gnu17 compiler.libcxx=libstdc++11 build_type=Release [conf] tools.cmake.cmaketoolchain:generator=Ninja tools.build:jobs=8 ## 使用命令 conan install . --output-folder=build --profile --build=missing ## 可选 使用CMakeUserPresets.json 中的配置项 # 配置项目 cmake --preset=default # 构建项目 cmake --build --preset=default -- -j1 ``` ## tips ```sh # 查找Conan支持的库版本 比如eigen库 conan search eigen # 查看本地缓存中的包 conan list "*" # 清楚build缓存 conan cache clean "*" # 移除某个包 conan remove "adol-c/*" # osqp qpoa 库cmakeminimumversion报错 # 修改~/.conan2/p/qpoas3adc77313944a/s/src/CMakeLists.txt 文件改为3.15 ```