Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions cmake/libmultiprocess.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,4 @@ function(add_libmultiprocess subdir)
# Add tests to "all" target so ctest can run them
set_target_properties(mptest PROPERTIES EXCLUDE_FROM_ALL OFF)
endif()
# Exclude examples from compilation database, because the examples are not
# built by default, and they contain generated c++ code. Without this
# exclusion, tools like clang-tidy and IWYU that make use of compilation
# database would complain that the generated c++ source files do not exist. An
# alternate fix could build "mpexamples" by default like "mptests" above.
set_target_properties(mpcalculator mpprinter mpexample PROPERTIES EXPORT_COMPILE_COMMANDS OFF)
endfunction()
8 changes: 7 additions & 1 deletion doc/developer-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -1136,9 +1136,15 @@ To update the subtree:

```sh
git fetch libmultiprocess
git subtree pull --prefix=src/ipc/libmultiprocess libmultiprocess master --squash
git subtree pull --prefix=src/ipc/libmultiprocess libmultiprocess lib --squash
```

The `lib` branch is published by libmultiprocess upstream and contains
only the files needed to do a full build (regular and via `depends`). It
is produced from `master` with `git subtree split --prefix=lib`; CI
scripts, documentation, and other upstream-only files are intentionally
excluded from the subtree.

The ultimate upstream of the few externally managed subtrees are:

- src/leveldb
Expand Down
40 changes: 0 additions & 40 deletions src/ipc/libmultiprocess/.clang-tidy

This file was deleted.

300 changes: 0 additions & 300 deletions src/ipc/libmultiprocess/.github/workflows/bitcoin-core-ci.yml

This file was deleted.

Loading
Loading