From 215e1d2b878ce6251d745dac064a006a435e4c49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Ag=C3=BCero?= Date: Fri, 16 Aug 2024 19:15:07 +0200 Subject: [PATCH] Restore example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Agüero --- examples/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index c7773135..ab609f92 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -6,8 +6,8 @@ project(gz-common-examples) find_package(gz-common6 QUIET REQUIRED COMPONENTS events profiler) set(GZ_COMMON_VER ${gz-common6_VERSION_MAJOR}) -#add_executable(assert_example assert_example.cc) -#target_link_libraries(assert_example gz-common${GZ_COMMON_VER}::core) +add_executable(assert_example assert_example.cc) +target_link_libraries(assert_example gz-common${GZ_COMMON_VER}::core) add_executable(console_example console.cc) target_link_libraries(console_example gz-common${GZ_COMMON_VER}::core)