Build script implementation for C++ library wrappers.
Crates generated by cpptorust_generator require multiple custom build operations:
CPP_TO_RUST_LIB_PATHS
, CPP_TO_RUST_FRAMEWORK_PATHS
, CPP_TO_RUST_INCLUDE_PATHS
);ffi.rs
file with actual linking attributes;cargo
attributes required for linking the crate.It appears a common task to perform other custom operations in the build script, so all the above operations are implemented as a separate crate (cpp_to_rust_build_tools
) which is used as build dependency of the default generated build script. If a custom build script is defined, it should use this crate's API to perform the necessary build operations.
See README of the repository root for more information about other parts of the project.