From 94e4f04d7cf4b0fef9a28d3771e73f1dc9fb0528 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Wed, 17 Dec 2025 20:29:16 +0000 Subject: [PATCH] cmake: Fix target name The executable target run by ctest is `mptest`. This change removes unnecessary steps when building the `codegen` target. --- cmake/libmultiprocess.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/libmultiprocess.cmake b/cmake/libmultiprocess.cmake index 5db8f4e9e54..32da8f8c5a0 100644 --- a/cmake/libmultiprocess.cmake +++ b/cmake/libmultiprocess.cmake @@ -27,7 +27,7 @@ function(add_libmultiprocess subdir) mark_as_advanced(CapnProto_kj-tls_IMPORTED_LOCATION) if(BUILD_TESTS) # Add tests to "all" target so ctest can run them - set_target_properties(mptests PROPERTIES EXCLUDE_FROM_ALL OFF) + 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