From 027df5e9854cab06452339534bbe3bdb118f92c0 Mon Sep 17 00:00:00 2001 From: Thomas Padioleau Date: Wed, 2 Oct 2024 11:17:20 +0200 Subject: [PATCH] Remove duplicated C++17 flags (#145) --- common/unit_test/CMakeLists.txt | 1 - fft/unit_test/CMakeLists.txt | 1 - 2 files changed, 2 deletions(-) diff --git a/common/unit_test/CMakeLists.txt b/common/unit_test/CMakeLists.txt index 5d5ff9f7..142f193e 100644 --- a/common/unit_test/CMakeLists.txt +++ b/common/unit_test/CMakeLists.txt @@ -15,7 +15,6 @@ add_executable(unit-tests-kokkos-fft-common ) target_compile_features(unit-tests-kokkos-fft-common PUBLIC cxx_std_17) -target_compile_options(unit-tests-kokkos-fft-common PUBLIC -std=c++17) target_link_libraries(unit-tests-kokkos-fft-common PUBLIC common GTest::gtest) diff --git a/fft/unit_test/CMakeLists.txt b/fft/unit_test/CMakeLists.txt index 7c03a521..065a50d1 100644 --- a/fft/unit_test/CMakeLists.txt +++ b/fft/unit_test/CMakeLists.txt @@ -9,7 +9,6 @@ add_executable(unit-tests-kokkos-fft-core ) target_compile_features(unit-tests-kokkos-fft-core PUBLIC cxx_std_17) -target_compile_options(unit-tests-kokkos-fft-core PUBLIC -std=c++17) target_link_libraries(unit-tests-kokkos-fft-core PUBLIC KokkosFFT::fft GTest::gtest)