Skip to content

Cargo subcommand for building Houdini plugins.

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

elrnv/cargo-hdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cargo-hdk

A subcommand of cargo for building Houdini plugins based on the Houdini Development Kit (HDK).

The purpose of this command line tool is to simplify building Rust plugins for Houdini using the HDK.

On crates.io

Features

Build a CMake based HDK plugin in a subdirectory (default is $CARGO_MANIFEST_DIR/hdk where $CARGO_MANIFEST_DIR is the crate root directory containing the Cargo.toml file) containing the CMakeLists.txt and the source code. The actual build artifacts are stored in a designated build subdirectory (for debug builds the complete build path is $CARGO_MANIFEST_DIR/hdk/build_debug).

Usage

To build the HDK plugin located in $CARGO_MANIFEST_DIR/hdk, simply run

cargo hdk

For release builds use

cargo hdk --release

To use a different CMake generator like Ninja, use the --cmake option

cargo hdk --cmake '[-G Ninja]'

All arguments are expected to be within [ and ] brackets to avoid ambiguity with arguments passed directly to the cargo build command.

Note that specifying the CMake generator is required on the first build only. Subsequent builds will use the cached generator, unless cargo hdk --clean is run, which clears all build artifacts.

Debugging

If you are having trouble with the build process, this crate implements clap-verbosity-flag, which means logging can be output with the following flags

cargo hdk -q    # silences output
cargo hdk -v    # show warnings
cargo hdk -vv   # show info
cargo hdk -vvv  # show debug
cargo hdk -vvvv # show trace

About

Cargo subcommand for building Houdini plugins.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published