9 lines
152 B
Bash
Executable File
9 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Determine path to script
|
|
MY_PATH=`dirname "$0"`
|
|
|
|
cd $MY_PATH/..
|
|
|
|
# Build and run target
|
|
ninja -C build/Debug "$1" && cd bin && Debug/"$1" |