File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,12 @@ file(GLOB RUST_API_SOURCES CONFIGURE_DEPENDS
1414
1515if (CMAKE_BUILD_TYPE MATCHES Debug)
1616 set (CARGO_CHECK_OPTS --workspace)
17- set (CARGO_DOC_OPTS --no -deps)
17+ # Documentation for both binaryninja and binaryninjacore-sys crates
18+ set (CARGO_DOC_OPTS --no -deps -p binaryninja -p binaryninjacore-sys)
1819else ()
1920 set (CARGO_CHECK_OPTS --workspace --release)
20- set (CARGO_DOC_OPTS --no -deps --release)
21+ # Documentation for both binaryninja and binaryninjacore-sys crates
22+ set (CARGO_DOC_OPTS --no -deps --release -p binaryninja -p binaryninjacore-sys)
2123endif ()
2224
2325if (BN_BUILD_NUMBER)
Original file line number Diff line number Diff line change 33#![ allow( non_snake_case) ]
44#![ allow( unused) ]
55#![ allow( clippy:: type_complexity) ]
6+ #![ doc( html_root_url = "https://dev-rust.binary.ninja/" ) ]
67
78include ! ( concat!( env!( "OUT_DIR" ) , "/bindings.rs" ) ) ;
Original file line number Diff line number Diff line change 1616#![ allow( clippy:: missing_safety_doc) ]
1717#![ allow( clippy:: result_unit_err) ]
1818#![ allow( clippy:: type_complexity) ]
19- #![ doc( html_root_url = "https://dev-rust.binary.ninja/binaryninja/ " ) ]
19+ #![ doc( html_root_url = "https://dev-rust.binary.ninja/" ) ]
2020#![ doc( html_favicon_url = "/favicon.ico" ) ]
2121#![ doc( html_logo_url = "/logo.png" ) ]
2222#![ doc( issue_tracker_base_url = "https://github.com/Vector35/binaryninja-api/issues/" ) ]
You can’t perform that action at this time.
0 commit comments