mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-23 18:32:55 +00:00
put space between source and header files in checkresources and getresources scripts
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
630483f3aa
commit
2b0bac3f44
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ for d in $(find $(pwd) $builddir/include $builddir/privateinclude -type d);do
|
|||
done
|
||||
|
||||
allfiles="$(find -iname '*.cpp' -printf '%P\n')"
|
||||
allfiles+="$(find -iname '*.h' -printf '%P\n')"
|
||||
allfiles+=" $(find -iname '*.h' -printf '%P\n')"
|
||||
for i in $allfiles;do
|
||||
if [ -n "$(moc -nw $i $autoinc)" ];then
|
||||
found="no"
|
||||
|
|
|
@ -9,7 +9,7 @@ for d in $(find $(pwd) $builddir/include $builddir/privateinclude -type d);do
|
|||
done
|
||||
|
||||
allfiles="$(find -iname '*.cpp' -printf '%P\n')"
|
||||
allfiles+="$(find -iname '*.h' -printf '%P\n')"
|
||||
allfiles+=" $(find -iname '*.h' -printf '%P\n')"
|
||||
for i in $allfiles;do
|
||||
if [ -n "$(moc -nw $i $autoinc)" ];then
|
||||
echo ' ${CMAKE_CURRENT_SOURCE_DIR}/'$i
|
||||
|
|
Loading…
Add table
Reference in a new issue