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