This guide covers all tools, with usage, parameters, and common use cases.
Build automation CLI for Delphi projects driven by a .builder JSON file.
- Location:
source/builder/bobbuilder.dpr - Output:
bobbuilder.exe
Usage:
bobbuilder [/DELPHIVERSION:n] [/BUILDTYPE:Development|Staging|Production]
[/INSTALLGROUPS:true|false]
[/PROJECTGROUP:GroupName | /PROJECT:path\to\project.dproj]
[/PLATFORMS:Win32;Win64] [/CONFIGS:Debug;Release]
[/CLEANUP:true|false] [/FORMAT]Parameters:
- /DELPHIVERSION: Delphi version index to use (integer).
- /BUILDTYPE: Build type; affects allowed scripts and version info.
- /INSTALLGROUPS: Build installer script groups (default true).
- Choose exactly one for selective builds:
- /PROJECTGROUP: Build only projects under the named group.
- /PROJECT: Build a single
.dproj(path or filename).
- /PLATFORMS: Override platforms for selective build, e.g.,
Win32;Win64. - /CONFIGS: Override configs, e.g.,
Debug;Release. - /CLEANUP: Remove prior outputs before build (default true).
- /FORMAT: Execute code format scripts only (no build).
Examples:
- Build entire workspace with defaults:
bobbuilder- Build a single project for Win64 Release only:
bobbuilder /PROJECT:source\app\app.dproj /PLATFORMS:Win64 /CONFIGS:Release- Build only a project group using defaults:
bobbuilder /PROJECTGROUP:Applications- Run code formatters without building:
bobbuilder /FORMATNotes:
- The tool loads the
.builderfile from the current directory. - Exit codes: 0 success; 1 missing file; 2 failed; 9999 cancelled.
Graphical builder with project tree, configuration editor, and build monitoring.
- Location:
source/builder/bobbuildergui.dpr - Output:
bobbuildergui.exe
Use cases:
- Edit
.buildermodel via forms. - Toggle project groups/scripts; run builds visually.
Converts Markdown documents to RTF with headings, bold/italic, inline/fenced code, hyperlinks, images (PNG/JPEG), lists, and Markdown tables (rendered as bordered RTF tables).
- Location:
source/mdtortf/bobmdtortf.dpr - Output:
bobmdtortf.exe
Usage:
bobmdtortf /INPUT:"input.md" /OUTPUT:"output.rtf"Parameters:
- /INPUT: Source Markdown file.
- /OUTPUT: Destination RTF file.
Examples:
bobmdtortf /INPUT:"README.md" /OUTPUT:"README.rtf"Manage and invoke code signing for binaries and installers.
- Location:
source/codesign/bobcodesign.dpr - Output:
bobcodesign.exe
Common tasks:
- Configure signtool path:
bobcodesign /MODE:SETSIGNTOOL /FILENAME:"C:\Path\to\signtool.exe"- Run with a named profile to sign artifacts (see in-app help for modes and variables).
Compares strings, files, checksums, and typed values.
- Location:
source/compare/bobcompare.dpr - Output:
bobcompare.exe
Use cases:
- Verify version strings/files, MD5 checksums, numeric/date comparisons.
- Run without args or with
/?to view command-line help.
Converts Delphi MAP files to JDBG debug symbols.
- Location:
source/maptojdbg/bobmaptojdbg.dpr - Output:
bobmaptojdbg.exe
Use cases:
- Generate
.jdbgfor post-mortem stack traces. - Typical usage:
bobmaptojdbg /INPUT:"app.map" /OUTPUT:"app.jdbg"(check/?).
Generates resources from templates and variables.
- Location:
source/resource/bobresource.dpr - Output:
bobresource.exe
Use cases:
- Produce
.rc/.resfrom templates during builds. - Run
/?for parameters (template, output, variable sources).
Generates and validates MD5 checksums.
- Location:
source/md5/bobmd5.dpr - Output:
bobmd5.exe
Use cases:
- Compute MD5 for files or compare expected vs actual.
- Examples:
bobmd5 /FILE:"path\to\file"orbobmd5 /VERIFY:"file" /MD5:...(see/?).
Wraps an Inno Setup EXE into an MSI using WiX Toolset.
- Location:
source/wixwrapper/bobwixwrapper.dpr - Output:
bobwixwrapper.exe
Prerequisites:
- Install WiX Toolset and set
%WIX%environment variable (installation path).
Use cases:
- Convert
setup.exetosetup.msifor enterprise deployment. - See
/?for switches (source exe, product/version metadata, output).
Automates pulling repositories, with optional GUI.
- Location:
source/gitpuller/*.dpr - Output:
bobgitpuller.exe,bobgitpullergui.exe
Use cases:
- Batch
git pullacross configured repos before a build. - GUI for monitoring and manual control.
Helpers for managing Delphi library paths and environment.
- Location:
source/library/*.dpr - Output:
boblibrary.exe,boblibrarygui.exe
Use cases:
- Inspect and update library paths, environment variables.
Automates building and executing configured test projects.
- Location:
source/tests/bobtests.dpr - Output:
bobtests.exe
Use cases:
- Build and run tests; often orchestrated by
bobbuilderpre/post test steps.
- Most tools support
/?to show command-line help. - Paths may be absolute or relative to the working directory.
- For enterprise builds, prefer
bobbuilderto orchestrate all steps.