From 3f2baa53f6dd2c5dbee55b531227878caa5be8c5 Mon Sep 17 00:00:00 2001 From: Oliver Lantwin Date: Mon, 11 May 2026 22:56:23 +0200 Subject: [PATCH] feat: install build_geometry and validate_geometry executables These were built but not installed. Installing them allows the geometry database to be generated as part of the package deployment. --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 112e3b5..de7ac9a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -67,6 +67,11 @@ install( ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) +install( + TARGETS build_geometry validate_geometry + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} +) + # Install main headers install(DIRECTORY include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})