mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
7 lines
271 B
Bash
Executable file
7 lines
271 B
Bash
Executable file
#!/bin/bash
|
|
# Recalculates the KolourPaint-specific part of CMakeLists.txt's "include_directories()"
|
|
|
|
for f in `find -type d | fgrep -v .git | egrep -v '^\.$' | egrep -v '^\./pics ^\./patches$ ^\./tests$' | cut -c3- | sort`
|
|
do
|
|
echo '${CMAKE_CURRENT_SOURCE_DIR}/'$f
|
|
done
|