From 9f2c184190481a7d847f304652aabb56b0a0491d Mon Sep 17 00:00:00 2001 From: isidorostsa Date: Sun, 28 May 2023 16:53:11 +0300 Subject: [PATCH] add trait and test to cmake --- libs/core/algorithms/CMakeLists.txt | 1 + .../tests/unit/algorithms/util/CMakeLists.txt | 12 +++++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/libs/core/algorithms/CMakeLists.txt b/libs/core/algorithms/CMakeLists.txt index 8f37b9277a31..51e84e84fa21 100644 --- a/libs/core/algorithms/CMakeLists.txt +++ b/libs/core/algorithms/CMakeLists.txt @@ -7,6 +7,7 @@ set(algorithms_headers hpx/algorithms/traits/is_pair.hpp hpx/algorithms/traits/is_relocatable.hpp + hpx/algorithms/traits/is_trivially_relocatable.hpp hpx/algorithms/traits/is_value_proxy.hpp hpx/algorithms/traits/pointer_category.hpp hpx/algorithms/traits/projected.hpp diff --git a/libs/core/algorithms/tests/unit/algorithms/util/CMakeLists.txt b/libs/core/algorithms/tests/unit/algorithms/util/CMakeLists.txt index 25e81f7364a1..5cb9be0d025d 100644 --- a/libs/core/algorithms/tests/unit/algorithms/util/CMakeLists.txt +++ b/libs/core/algorithms/tests/unit/algorithms/util/CMakeLists.txt @@ -4,8 +4,14 @@ # Distributed under the Boost Software License, Version 1.0. (See accompanying # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -set(tests test_is_relocatable test_low_level test_merge_four test_merge_vector - test_nbits test_range +set(tests + test_is_relocatable + test_is_trivially_relocatable + test_low_level + test_merge_four + test_merge_vector + test_nbits + test_range ) foreach(test ${tests}) @@ -25,4 +31,4 @@ foreach(test ${tests}) ) add_hpx_unit_test("modules.algorithms.util" ${test} ${${test}_PARAMETERS}) -endforeach() +endforeach() \ No newline at end of file