بنقرة واحدة
sqlitecpp-sqlite-flags
SQLiteCpp and sqlite3 feature flags for CMake and Meson builds.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
SQLiteCpp and sqlite3 feature flags for CMake and Meson builds.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
SQLiteCpp CI workflow patterns. Use for GitHub Actions, AppVeyor, Travis, matrices, or test steps.
Running shell commands on this Windows checkout via the PowerShell and Bash tools, and passing multi-line or quoted arguments (commit messages, PR bodies, file content) without corruption. Use when running git or gh with multi-line or quoted input, writing a commit message or PR body from the command line, reaching for a heredoc or here-string, or after a message or body comes out wrapped in stray characters such as a leading and trailing `@`.
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.
SQLiteCpp coding standards and API rules for core edits, public headers, style, and Doxygen.
Default response behavior for AI coding agents: professional, factual, neutral tone with calibrated critical evaluation. Baseline for every task: implementation, code review, debugging, planning, research, evaluation, Q&A.
Editing conventions for files under `.claude/skills/**` (markdown style, frontmatter format, SKILL.md vs `references/` split, upstream-vendored skills). Use when creating a new skill, editing any `SKILL.md` or `references/*.md` file, refactoring a skill description, or after adding/removing a skill.
| name | sqlitecpp-sqlite-flags |
| description | SQLiteCpp and sqlite3 feature flags for CMake and Meson builds. |
SQLITECPP_INTERNAL_SQLITE (ON): build bundled sqlite3.SQLITECPP_USE_ASAN (OFF): address sanitizer.SQLITECPP_USE_GCOV (OFF): coverage.SQLITECPP_DISABLE_STD_FILESYSTEM (OFF): disable std::filesystem.SQLITECPP_DISABLE_EXPANDED_SQL (OFF): disable sqlite3_expanded_sql.SQLITECPP_DISABLE_STD_FILESYSTEM (OFF): disable std::filesystem.SQLITECPP_DISABLE_SQLITE3_EXPANDED_SQL (OFF): disable sqlite3_expanded_sql.SQLITE_ENABLE_COLUMN_METADATA: enable getColumnOriginName() (CMake default ON, Meson default false).SQLITE_ENABLE_ASSERT_HANDLER (OFF): enable custom assert handler.SQLITE_HAS_CODEC (OFF): enable codec API (SQLCipher).SQLITE_USE_LEGACY_STRUCT (OFF): legacy sqlite3_value.SQLITE_OMIT_LOAD_EXTENSION (OFF): disable load_extension.SQLITE_ENABLE_RTREE (OFF): enable RTree (internal sqlite3).SQLITE_ENABLE_DBSTAT_VTAB (OFF): enable DBSTAT (internal sqlite3).BUILD_SHARED_LIBS=ON adds SQLITECPP_COMPILE_DLL and SQLITECPP_DLL_EXPORT.SQLITE_ENABLE_COLUMN_METADATA.