build

Configure and build the OrderParserProcessor C++ backend with CMake.

2|Updated May 17, 2025
One-click install
npx skills add https://github.com/AlexandrePrevot/OrderParserProcessor --skill build-alexandreprevot
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: build
Source: https://github.com/AlexandrePrevot/OrderParserProcessor/tree/main/.claude/skills/build
Command: npx skills add https://github.com/AlexandrePrevot/OrderParserProcessor --skill build-alexandreprevot

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates configuring, building, and optionally testing the OrderParserProcessor C++ backend using CMake, reducing manual steps and ensuring consistent builds.

Core Features & Use Cases

  • Standard Build: Configure and build with a single sequence: cmake -B build followed by cmake --build build.
  • Build with Tests: Enable tests with -DBUILD_TESTS=ON and build.
  • Clean Rebuild: Remove the build directory and start fresh.
  • Parallel Build: Use -jN for faster builds.
  • ANTLR Handling: CMake handles ANTLR file generation from .g4 grammars automatically.

Quick Start

Set ORDER_PARSER_PROCESSOR_ROOT and ANTLR_VERSION, then run:

  • cmake -B build
  • cmake --build build Optional: enable tests with -DBUILD_TESTS=ON and rebuild.