Complete documentation of IncludeBuild functions and types
Initializes IncludeBuild with default settings.
void ib_init(void)
ib_init();
Builds the project. Automatically finds source files, resolves dependencies, and compiles what's needed.
bool ib_build(void)
true
if the build was successful, false
otherwise.
if (!ib_build()) {
printf("Build failed!\n");
return 1;
}
Cleans up all build artifacts.
void ib_clean(void)
ib_clean();
Adds a specific build target with a main source file.
void ib_add_target(const char* name, const char* main_source)
name
: Name of the target (output executable name).main_source
: Path to the main source file.ib_add_target("my_app", "main.c");
Adds a directory to the include search path.
void ib_add_include_dir(const char* dir)
dir
: Path to the directory to include.ib_add_include_dir("include");
Excludes a file or pattern from the build.
void ib_exclude_file(const char* file)
file
: File path or pattern (e.g., "test_*.c") to exclude.ib_exclude_file("test_*.c"); // Exclude all test files
ib_exclude_file("build.c"); // Exclude the build script itself
Resets the build configuration to default values.
void ib_reset_config(void)
ib_reset_config(); // Reset to defaults
Adds a library to link with.
void ib_add_library(const char* library)
library
: Name of the library to link with (without "lib" prefix or file extension)ib_add_library("m"); // Link with the math library
ib_add_library("pthread"); // Link with the pthread library
Adds multiple libraries to link with in a single call.
void ib_add_libraries(const char* first, ...)
first
: Name of the first library to link with...
: Additional libraries (must end with NULL)ib_add_libraries("m", "pthread", "dl", NULL);
Adds a directory to search for libraries.
void ib_add_library_path(const char* path)
path
: Path to the directory containing librariesib_add_library_path("lib");
ib_add_library_path("/usr/local/lib");
Sets the logging verbosity level.
void ib_set_log_level(ib_log_level level)
level
: The log level to set (IB_LOG_ERROR, IB_LOG_WARN, IB_LOG_INFO, or IB_LOG_DEBUG)ib_set_log_level(IB_LOG_DEBUG); // Most verbose
Enables or disables verbose output.
void ib_set_verbose(bool verbose)
verbose
: Whether to enable verbose output (true) or not (false)ib_set_verbose(true); // Enable detailed build information
Enumeration of available log levels.
typedef enum {
IB_LOG_ERROR = 0, // Only error messages
IB_LOG_WARN = 1, // Warnings and errors
IB_LOG_INFO = 2, // Info, warnings, and errors (default)
IB_LOG_DEBUG = 3 // All messages including debug information
} ib_log_level;
Automatic "magic" function that builds a complete library project including static lib, shared lib, and tests.
bool ib_build_library(const char* library_name, int argc, char** argv)
library_name
: Base name of the library (e.g., "logger" creates "liblogger.a/so")argc
: Number of command line arguments (from main)argv
: Command line arguments (from main)true
if the build was successful, false
otherwise.
int main(int argc, char** argv) {
ib_init();
// Build the library with all its components
return ib_build_library("logger", argc, argv) ? 0 : 1;
}
Builds a static library (.a) from the specified source.
bool ib_build_static_library(const char* name, const char* main_source, const char* exclude_file)
name
: Name of the library (without "lib" prefix or ".a" extension)main_source
: Path to the main source fileexclude_file
: File pattern to exclude (or NULL)true
if the build was successful, false
otherwise.
ib_build_static_library("math", "src/math.c", "test_*.c");
Builds a dynamic/shared library (.so/.dll) from the specified source.
bool ib_build_dynamic_library(const char* name, const char* main_source, const char* exclude_file)
name
: Name of the library (without "lib" prefix or extension)main_source
: Path to the main source fileexclude_file
: File pattern to exclude (or NULL)true
if the build was successful, false
otherwise.
ib_build_dynamic_library("math", "src/math.c", "test_*.c");
Initializes IncludeBuild with a custom configuration.
void ib_init_with_config(const ib_config* config)
config
: Pointer to a custom configuration structureib_config custom_config = {0};
strcpy(custom_config.compiler, "clang");
strcpy(custom_config.compiler_flags, "-Wall -O3");
ib_init_with_config(&custom_config);
Gets the version string of IncludeBuild.
const char* ib_version(void)
String with the version of IncludeBuild.
printf("Using IncludeBuild version: %s\n", ib_version());
Constants that can be defined before including build.h to customize limits.
#define IB_MAX_PATH 1024 // Maximum path length
#define IB_MAX_CMD 4096 // Maximum command length
#define IB_MAX_FILES 1000 // Maximum number of files
#define IB_MAX_DEPS 100 // Maximum dependencies per file
#define IB_MAX_INCLUDE_DIRS 50 // Maximum include directories
// Define custom limits before including build.h
#define IB_MAX_FILES 2000 // Support more files
#define IB_MAX_DEPS 200 // Support more dependencies
#define IB_MAX_INCLUDE_DIRS 100 // Support more include dirs
#include "build.h"