Implementation of ritual's build script.
Default generated build script uses this crate as a build dependency
and just calls ritual_build::run().
If a custom build script is used, it should either
use the same call to execute all operations normally
or use Config type to change the build script's settings.
See README of the repository root for more information.
Crates generated by ritual require multiple custom build operations:
- Apply extra build configuration passed via environment variables
(
RITUAL_LIBRARY_PATH,RITUAL_FRAMEWORK_PATH,RITUAL_INCLUDE_PATH); - Select active build configuration based on current target;
- Build the C++ wrapper library;
- Generate
ffi.rsfile with actual linking attributes; - Determine sizes of C++ types with stack allocation place;
- Print
cargoattributes 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 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.