diff --git a/tools/backend/check_install_openmp.sh b/tools/backend/check_install_openmp.sh index bc73cab18..d89da9a29 100644 --- a/tools/backend/check_install_openmp.sh +++ b/tools/backend/check_install_openmp.sh @@ -13,5 +13,5 @@ sh tools/backend/helper/create_empty_directory.sh build_install_test # Compile dependent project cmake -E cmake_echo_color --blue ">>>>> Check installation ($CONFIG)" -cmake -B build_install_test -S tests/install_test -DCMAKE_BUILD_TYPE=$CONFIG -Dstdgpu_ROOT=bin -Dthrust_ROOT=external/cccl/thrust $@ +cmake -B build_install_test -S tests/install_test -DCMAKE_BUILD_TYPE=$CONFIG -Dstdgpu_ROOT=bin -Dthrust_ROOT=$(pwd)/external/cccl/thrust $@ cmake --build build_install_test --config ${CONFIG} --parallel 13 diff --git a/tools/backend/configure_openmp.sh b/tools/backend/configure_openmp.sh index 5eb326d0c..64d22c53b 100644 --- a/tools/backend/configure_openmp.sh +++ b/tools/backend/configure_openmp.sh @@ -12,4 +12,4 @@ fi sh tools/backend/helper/create_empty_directory.sh build # Configure project -sh tools/backend/helper/configure.sh $CONFIG -DSTDGPU_BACKEND=STDGPU_BACKEND_OPENMP -DSTDGPU_COMPILE_WARNING_AS_ERROR=ON -Dthrust_ROOT=external/cccl/thrust -DCMAKE_VERIFY_INTERFACE_HEADER_SETS=ON $@ +sh tools/backend/helper/configure.sh $CONFIG -DSTDGPU_BACKEND=STDGPU_BACKEND_OPENMP -DSTDGPU_COMPILE_WARNING_AS_ERROR=ON -Dthrust_ROOT=$(pwd)/external/cccl/thrust -DCMAKE_VERIFY_INTERFACE_HEADER_SETS=ON $@ diff --git a/tools/backend/configure_openmp_clang_tidy.sh b/tools/backend/configure_openmp_clang_tidy.sh index d04b80a1b..c0bc7d859 100644 --- a/tools/backend/configure_openmp_clang_tidy.sh +++ b/tools/backend/configure_openmp_clang_tidy.sh @@ -5,4 +5,4 @@ set -e sh tools/backend/helper/create_empty_directory.sh build # Configure project -sh tools/backend/helper/configure.sh Debug -DSTDGPU_BACKEND=STDGPU_BACKEND_OPENMP -DSTDGPU_ANALYZE_WITH_CLANG_TIDY=ON -DSTDGPU_COMPILE_WARNING_AS_ERROR=ON -Dthrust_ROOT=external/cccl/thrust +sh tools/backend/helper/configure.sh Debug -DSTDGPU_BACKEND=STDGPU_BACKEND_OPENMP -DSTDGPU_ANALYZE_WITH_CLANG_TIDY=ON -DSTDGPU_COMPILE_WARNING_AS_ERROR=ON -Dthrust_ROOT=$(pwd)/external/cccl/thrust diff --git a/tools/backend/configure_openmp_cppcheck.sh b/tools/backend/configure_openmp_cppcheck.sh index 7726aebb9..e7f958b19 100644 --- a/tools/backend/configure_openmp_cppcheck.sh +++ b/tools/backend/configure_openmp_cppcheck.sh @@ -5,4 +5,4 @@ set -e sh tools/backend/helper/create_empty_directory.sh build # Configure project -sh tools/backend/helper/configure.sh Debug -DSTDGPU_BACKEND=STDGPU_BACKEND_OPENMP -DSTDGPU_ANALYZE_WITH_CPPCHECK=ON -DSTDGPU_COMPILE_WARNING_AS_ERROR=ON -Dthrust_ROOT=external/cccl/thrust +sh tools/backend/helper/configure.sh Debug -DSTDGPU_BACKEND=STDGPU_BACKEND_OPENMP -DSTDGPU_ANALYZE_WITH_CPPCHECK=ON -DSTDGPU_COMPILE_WARNING_AS_ERROR=ON -Dthrust_ROOT=$(pwd)/external/cccl/thrust diff --git a/tools/backend/configure_openmp_documentation.sh b/tools/backend/configure_openmp_documentation.sh index 212fbfa61..9d14096da 100644 --- a/tools/backend/configure_openmp_documentation.sh +++ b/tools/backend/configure_openmp_documentation.sh @@ -5,4 +5,4 @@ set -e sh tools/backend/helper/create_empty_directory.sh build # Configure project -sh tools/backend/helper/configure.sh Release -DSTDGPU_BACKEND=STDGPU_BACKEND_OPENMP -DSTDGPU_BUILD_DOCUMENTATION=ON -DSTDGPU_COMPILE_WARNING_AS_ERROR=ON -Dthrust_ROOT=external/cccl/thrust +sh tools/backend/helper/configure.sh Release -DSTDGPU_BACKEND=STDGPU_BACKEND_OPENMP -DSTDGPU_BUILD_DOCUMENTATION=ON -DSTDGPU_COMPILE_WARNING_AS_ERROR=ON -Dthrust_ROOT=$(pwd)/external/cccl/thrust diff --git a/tools/backend/configure_openmp_lcov.sh b/tools/backend/configure_openmp_lcov.sh index 5ba0533a4..f698692e4 100644 --- a/tools/backend/configure_openmp_lcov.sh +++ b/tools/backend/configure_openmp_lcov.sh @@ -5,4 +5,4 @@ set -e sh tools/backend/helper/create_empty_directory.sh build # Configure project -sh tools/backend/helper/configure.sh Debug -DSTDGPU_BACKEND=STDGPU_BACKEND_OPENMP -DSTDGPU_BUILD_TEST_COVERAGE=ON -Dthrust_ROOT=external/cccl/thrust +sh tools/backend/helper/configure.sh Debug -DSTDGPU_BACKEND=STDGPU_BACKEND_OPENMP -DSTDGPU_BUILD_TEST_COVERAGE=ON -Dthrust_ROOT=$(pwd)/external/cccl/thrust