From 815907e98c51e636eff47305b67f7d99e3c2e554 Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Tue, 18 May 2021 08:39:37 -0400 Subject: [PATCH] CMake always explicitly specify a source files extension While you can pass files without extensions to CMake this is legacy behavior that is now deprecated. --- cpp/tests/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpp/tests/CMakeLists.txt b/cpp/tests/CMakeLists.txt index 914edf95fd1..d87b4b81bdc 100644 --- a/cpp/tests/CMakeLists.txt +++ b/cpp/tests/CMakeLists.txt @@ -61,8 +61,8 @@ ConfigureTest(GROUPBY_TEST groupby/count_scan_tests.cpp groupby/count_tests.cpp groupby/groups_tests.cpp - groupby/keys_tests.cpp - groupby/min_tests.cpp + groupby/keys_tests.cpp + groupby/min_tests.cpp groupby/max_scan_tests.cpp groupby/max_tests.cpp groupby/mean_tests.cpp @@ -137,7 +137,7 @@ ConfigureTest(CLAMP_TEST replace/clamp_test.cpp) ################################################################################################### # - fixed_point tests ----------------------------------------------------------------------------- -ConfigureTest(FIXED_POINT_TEST +ConfigureTest(FIXED_POINT_TEST fixed_point/fixed_point_tests.cpp fixed_point/fixed_point_tests.cu) @@ -330,7 +330,7 @@ ConfigureTest(STRINGS_TEST strings/chars_types_tests.cpp strings/combine/concatenate_list_elements_tests.cpp strings/combine/concatenate_tests.cpp - strings/combine/join_strings_tests + strings/combine/join_strings_tests.cpp strings/concatenate_tests.cpp strings/contains_tests.cpp strings/datetime_tests.cpp