mirror of
https://bitbucket.org/smil3y/kde-l10n.git
synced 2025-02-23 10:32:52 +00:00
8 lines
193 B
Bash
Executable file
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
|