From 2448d282ccdbbe739d097463c070a1a89dc21cd2 Mon Sep 17 00:00:00 2001 From: Ryan Ofsky Date: Wed, 29 Jul 2026 20:20:52 -0400 Subject: [PATCH] cmake: add type-unordered-set.h and version.h to public headers This ensures all headers are properly installed, and is useful for building bitcoin core with WITH_EXTERNAL_LIBMULTIPROCESS. --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bf50018a..ff8b1282 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -174,9 +174,11 @@ set(MP_PUBLIC_HEADERS include/mp/type-struct.h include/mp/type-threadmap.h include/mp/type-tuple.h + include/mp/type-unordered-set.h include/mp/type-vector.h include/mp/type-void.h - include/mp/util.h) + include/mp/util.h + include/mp/version.h) add_library(multiprocess STATIC ${MP_PROXY_SRCS} ${MP_PUBLIC_HEADERS}