kde-l10n/update.sh
2015-10-18 03:16:51 +03:00

8 lines
193 B
Bash
Executable file

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