From e031818d8c4b4901d7c1d2d9fbcbac9c18c59e70 Mon Sep 17 00:00:00 2001 From: Jochen Sprickerhof Date: Mon, 13 May 2024 14:14:21 +0200 Subject: [PATCH] Fix build with CMAKE_BUILD_TYPE=None This is the default build type for debhelper (Debian). --- install/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/CMakeLists.txt b/install/CMakeLists.txt index 4e935729c..414373edc 100644 --- a/install/CMakeLists.txt +++ b/install/CMakeLists.txt @@ -74,5 +74,5 @@ endforeach() # # Install lib files # -install_zenohc_lib("Release;RelWithDebInfo;MinSizeRel" "RELEASE" zenohc) -install_zenohc_lib("Debug" "DEBUG" zenohc_debug) \ No newline at end of file +install_zenohc_lib("Release;RelWithDebInfo;MinSizeRel;None" "RELEASE" zenohc) +install_zenohc_lib("Debug" "DEBUG" zenohc_debug)