15 lines
364 B
Bash
Executable File
15 lines
364 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
filter=${1:-}
|
|
|
|
{
|
|
./list-cmake-set-sources.sh cnc_sim_core_sources core/
|
|
./list-cmake-set-sources.sh cnc_sim_linuxcnc_rs274_backend_sources core/
|
|
} | ./list-filtered-existing-paths.sh \
|
|
"$filter" \
|
|
"missing wasm-safe project source" \
|
|
"missing wasm-safe project source in CMake list"
|