17 lines
390 B
Bash
17 lines
390 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
# shellcheck source=ci/build_common.sh
|
||
|
|
source "$(dirname "${BASH_SOURCE[0]}")/build_common.sh"
|
||
|
|
|
||
|
|
print_environment_details
|
||
|
|
|
||
|
|
PRESET="cccl-c-parallel"
|
||
|
|
|
||
|
|
CMAKE_OPTIONS=("-DCMAKE_CXX_STANDARD=${CXX_STANDARD}" "-DCMAKE_CUDA_STANDARD=${CXX_STANDARD}")
|
||
|
|
|
||
|
|
configure_and_build_preset "CCCL C Parallel Library" "$PRESET" "${CMAKE_OPTIONS[@]}"
|
||
|
|
|
||
|
|
print_time_summary
|