C/C++ build system written in bash
Go to file
2025-11-12 14:34:08 +05:00
default_tasks chmod 755 scripts 2025-11-12 13:49:05 +05:00
default_vscode added default_vscode/c_cpp_properties.json 2025-11-09 20:32:34 +05:00
example_dependency_configs chmod 755 scripts 2025-11-12 13:49:05 +05:00
include stopped writing {GRAY} before each message in myprint() 2025-11-12 14:33:22 +05:00
.gitattributes removed '\r' AGAIN 2025-06-20 19:21:34 +05:00
.gitignore parse_version 2024-07-19 00:13:12 +03:00
bootstrap.sh chmod 755 scripts 2025-11-12 13:49:05 +05:00
CBUILD_VERSION v2.3.1 2025-11-12 14:34:08 +05:00
cbuild.sh v2.3.1 2025-11-12 14:34:08 +05:00
CHANGELOG.md load user config before project config 2025-11-12 14:31:22 +05:00
chmod_scripts.sh chmod 755 scripts 2025-11-12 13:49:05 +05:00
project.config.default v2.3.1 2025-11-12 14:34:08 +05:00
project.config.user.default chmod 755 scripts 2025-11-12 13:49:05 +05:00
README.md readme fix 2024-09-13 21:12:25 +05:00
setup.sh chmod 755 scripts 2025-11-12 13:49:05 +05:00

cbuild

My C/C++ build system written in sh.

Installation

git clone https://timerix.ddns.net:3322/Timerix/cbuild.git
cd cbuild
sudo ./setup.sh 

Can be installed to ~/.local/ if you have no root rights.

  • ./setup.sh --local
    
  • Then add ~/.local/bin to PATH in your shell config.

Usage

  1. Initialize cbuild project in some directory:
    cd some_project
    cbuild --new-project
    
  2. Edit project.config.
  3. Call some tasks:
    cbuild build_exec_dbg exec
    

P.S. See help

cbuild -h