mirror of
https://bitbucket.org/smil3y/kde-l10n.git
synced 2025-02-23 18:42:54 +00:00
7 lines
134 B
Bash
Executable file
7 lines
134 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for i in *;do
|
|
if [ -d "$i" ];then
|
|
echo "macro_optional_add_subdirectory( $i )" >> CMakeLists.txt
|
|
fi
|
|
done
|