Skip to content

Commit 11ae426

Browse files
committed
Merge bitcoin#35715: cmake: Fix WITH_EXTERNAL_LIBMULTIPROCESS + BUILD_FUZZ_BINARY
db35b92 ipc # build: Fix fuzz target CMakeLists.txt for external libmultiprocess (Ryan Ofsky) Pull request description: CMake `WITH_EXTERNAL_LIBMULTIPROCESS` and `BUILD_FUZZ_BINARY` options stopped working together recently due to bitcoin#35118 commit 037ad77 because an non-namespaced `Libmultiprocess::multiprocess` target name was referenced. Fix by specifying the full target name which is better for readability anyway. ACKs for top commit: sedited: ACK db35b92 hebasto: ACK db35b92, I have reviewed the code and it looks OK. Tree-SHA512: 7cfb19a66dd4ccdcd6dfdedc3000fd20f488851f3235852717fd31698a7e8efb5c4e14705b0dc0c1ea506b38268f1ab030bca7865ddfdd85144598f435581247
2 parents e544413 + db35b92 commit 11ae426

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ipc/test/fuzz/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# file COPYING or https://opensource.org/license/mit/.
44

55
target_sources(fuzz PRIVATE ${PROJECT_SOURCE_DIR}/src/ipc/test/fuzz/ipc.cpp)
6-
target_link_libraries(fuzz bitcoin_ipc_fuzz multiprocess)
6+
target_link_libraries(fuzz bitcoin_ipc_fuzz Libmultiprocess::multiprocess)

0 commit comments

Comments
 (0)