From 02bf37abc43d28ae654b9907df38541754e0d126 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 10 Aug 2022 11:20:29 +0200 Subject: [PATCH] build(example): Disabled Kalman examples 6-8 for AppleClang (example 5 enabled) Resolves #382 --- example/kalman_filter/CMakeLists.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/example/kalman_filter/CMakeLists.txt b/example/kalman_filter/CMakeLists.txt index ff0695a9..d2f62243 100644 --- a/example/kalman_filter/CMakeLists.txt +++ b/example/kalman_filter/CMakeLists.txt @@ -35,11 +35,10 @@ add_example(kalman_filter-example_1 mp-units::core-fmt mp-units::si) add_example(kalman_filter-example_2 mp-units::core-fmt mp-units::si) add_example(kalman_filter-example_3 mp-units::core-fmt mp-units::si) add_example(kalman_filter-example_4 mp-units::core-fmt mp-units::si) +add_example(kalman_filter-example_5 mp-units::core-fmt mp-units::si) if(NOT CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") - add_example(kalman_filter-example_5 mp-units::core-fmt mp-units::si) add_example(kalman_filter-example_6 mp-units::core-fmt mp-units::si) + add_example(kalman_filter-example_7 mp-units::core-fmt mp-units::si) + add_example(kalman_filter-example_8 mp-units::core-fmt mp-units::si) endif() - -add_example(kalman_filter-example_7 mp-units::core-fmt mp-units::si) -add_example(kalman_filter-example_8 mp-units::core-fmt mp-units::si)