Skip to content

Commit 951db75

Browse files
committed
Introduce PPC_IMPLEMENTATIONS variable
1 parent 46d4312 commit 951db75

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmake/functions.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ function(ppc_configure_subproject SUBDIR)
8383
message(STATUS "${SUBDIR}")
8484

8585
# List of implementations to configure
86-
foreach(IMPL IN LISTS IMPLEMENTATIONS)
86+
foreach(IMPL IN LISTS PPC_IMPLEMENTATIONS)
8787
setup_implementation(
8888
NAME
8989
${IMPL}

tasks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ppc_add_test(${FUNC_TEST_EXEC} common/runners/functional.cpp USE_FUNC_TESTS)
1818
ppc_add_test(${PERF_TEST_EXEC} common/runners/performance.cpp USE_PERF_TESTS)
1919

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

2323
# ——— Configure each subproject —————————————————————————————————————
2424
file(

0 commit comments

Comments
 (0)