mirror of
https://github.com/Klipper3d/klipper.git
synced 2026-01-17 21:35:49 -07:00
5 lines
277 B
Bash
Executable file
5 lines
277 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
target="${1:-motorstepstocartesiantest_quadratic.cpp}"
|
|
g++ -g -fconcepts -I../../../hangprinter-flex-compensation -I. ../../../hangprinter-flex-compensation/flex.cpp ../../../hangprinter-flex-compensation/flex_qp.cpp "$target" && ./a.out
|