From 3bca7b23ead97a26419cd41a4166ff0914b06833 Mon Sep 17 00:00:00 2001 From: Khalil Estell Date: Fri, 10 May 2024 12:11:15 -0700 Subject: [PATCH] :bug: Add back debug symbols to unit tests --- cmake/build.cmake | 3 ++- conanfile.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cmake/build.cmake b/cmake/build.cmake index e630268..8a5ae93 100644 --- a/cmake/build.cmake +++ b/cmake/build.cmake @@ -155,7 +155,8 @@ function(libhal_unit_test) -Wshadow -Wnon-virtual-dtor -Wno-gnu-statement-expression - -pedantic) + -pedantic + -g) target_link_options(unit_test PRIVATE --coverage diff --git a/conanfile.py b/conanfile.py index 0a1e61d..4f160cf 100644 --- a/conanfile.py +++ b/conanfile.py @@ -23,7 +23,7 @@ class libhal_cmake_util_conan(ConanFile): name = "libhal-cmake-util" - version = "4.1.1" + version = "4.1.2" license = "Apache-2.0" homepage = "https://libhal.github.io/libhal-armcortex" description = ("A collection of CMake scripts for ARM Cortex ")