5 lines
187 B
Bash
Executable File
5 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
pushd "$(dirname "$0")" || exit
|
|
colcon build --event-handlers console_cohesion+ --cmake-args -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -G Ninja
|
|
popd || exit
|