用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/SRombauts/SQLiteCpp --skill sqlitecpp-build-cmake命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
SQLiteCpp change workflow checklists for API, tests, build files, and CHANGELOG updates. Use when adding a method or class, editing build files, or writing a CHANGELOG entry for a PR.
How to update the bundled SQLite3 amalgamation (sqlite3/sqlite3.c and sqlite3.h), the Meson wrap, README.md, and CHANGELOG.md. Use when upgrading SQLite, refreshing the vendored amalgamation, or bumping the sqlite3 wrap.
SQLiteCpp CI workflow patterns. Use for GitHub Actions, AppVeyor, Travis, matrices, or test steps.
基于 SOC 职业分类
正在显示 SKILL.md
| name | sqlitecpp-build-cmake |
| description | Build SQLiteCpp with CMake. Use for CMake builds, tests, options, or build scripts. |
mkdir buildcd buildcmake -G "Visual Studio 18 2026" -DSQLITECPP_BUILD_TESTS=ON -DSQLITECPP_BUILD_EXAMPLES=ON ..cmake --build . --config Releasemkdir build && cd buildcmake -DCMAKE_BUILD_TYPE=Debug -DSQLITECPP_BUILD_TESTS=ON -DSQLITECPP_BUILD_EXAMPLES=ON ..cmake --build .build.bat (Windows) enables shared libs, tests, examples, and runs ctest.build.sh (Unix) enables ASAN, shared libs, tests, examples, and runs ctest.SQLITECPP_BUILD_TESTS (OFF): build unit tests.SQLITECPP_BUILD_EXAMPLES (OFF): build examples.BUILD_SHARED_LIBS (OFF): build shared libs (DLLs).SQLITECPP_INTERNAL_SQLITE (ON): use bundled sqlite3 source.SQLITE_ENABLE_COLUMN_METADATA (ON): enable getColumnOriginName().SQLITECPP_RUN_CPPLINT (ON): run cpplint target.SQLITECPP_RUN_CPPCHECK (ON): run cppcheck target.SQLITECPP_RUN_DOXYGEN (OFF): generate docs.SQLITECPP_USE_ASAN (OFF): address sanitizer.SQLITECPP_USE_GCOV (OFF): GCov coverage.SQLITECPP_DISABLE_STD_FILESYSTEM (OFF): disable std::filesystem support.SQLITECPP_DISABLE_EXPANDED_SQL (OFF): disable sqlite3_expanded_sql support.ctest --output-on-failurectest --output-on-failure -Vctest --output-on-failure -R "Database"GTest; otherwise they fall back to the googletest submodule.git submodule update --init --recursive.