kde-l10n/update.sh

8 lines
135 B
Bash
Raw Normal View History

#!/bin/bash
for i in *;do
if [ -d "$i" ];then
echo "macro_optional_add_subdirectory ( $i )" >> CMakeLists.txt
fi
done