Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/functions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function(ppc_configure_subproject SUBDIR)
message(STATUS "${SUBDIR}")

# List of implementations to configure
foreach(IMPL IN LISTS IMPLEMENTATIONS)
foreach(IMPL IN LISTS PPC_IMPLEMENTATIONS)
setup_implementation(
NAME
${IMPL}
Expand Down
2 changes: 1 addition & 1 deletion tasks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ppc_add_test(${FUNC_TEST_EXEC} common/runners/functional.cpp USE_FUNC_TESTS)
ppc_add_test(${PERF_TEST_EXEC} common/runners/performance.cpp USE_PERF_TESTS)

# ——— List of implementations ————————————————————————————————————————
set(IMPLEMENTATIONS all mpi omp seq stl tbb)
set(PPC_IMPLEMENTATIONS "all;mpi;omp;seq;stl;tbb" CACHE STRING "Implementations to build (semicolon-separated)")

# ——— Configure each subproject —————————————————————————————————————
file(
Expand Down
Loading