File indexing completed on 2024-11-17 04:00:41
0001 #!/bin/bash 0002 # Recalculates the KolourPaint-specific part of CMakeLists.txt's "include_directories()" 0003 0004 for f in `find -type d | fgrep -v .git | egrep -v '^\.$' | egrep -v '^\./pics ^\./patches$ ^\./tests$' | cut -c3- | sort` 0005 do 0006 echo '${CMAKE_CURRENT_SOURCE_DIR}/'$f 0007 done