Skip to content

Commit

Permalink
merge changes
Browse files Browse the repository at this point in the history
Signed-off-by: Hari Hara Naveen S <[email protected]>
  • Loading branch information
Hari Hara Naveen S committed Jul 16, 2023
1 parent 6e92ef9 commit c8c29c9
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions libs/core/algorithms/tests/unit/algorithms/util/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Copyright (c) 2020 Hartmut Kaiser
#
# SPDX-License-Identifier: BSL-1.0
# 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
test_simd_helpers
)

foreach(test ${tests})
set(sources ${test}.cpp)

source_group("Source Files" FILES ${sources})

set(folder_name "Tests/Unit/Modules/Core/Algorithms/Util")

# add example executable
add_hpx_executable(
${test}_test INTERNAL_FLAGS
SOURCES ${sources} ${${test}_FLAGS}
EXCLUDE_FROM_ALL
HPX_PREFIX ${HPX_BUILD_PREFIX}
FOLDER ${folder_name}
)

add_hpx_unit_test("modules.algorithms.util" ${test} ${${test}_PARAMETERS})
endforeach()

0 comments on commit c8c29c9

Please sign in to comment.