git-subtree-dir: deps/nostalgia git-subtree-split: 9cb6bd4a32e9f39a858f72443ff5c6d40489fe22
9 lines
125 B
Bash
Executable File
9 lines
125 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
for f in $(find $1 -maxdepth 1 -mindepth 1 -type d)
|
|
do
|
|
cmake --build "$f" --target $2 --
|
|
done
|