File indexing completed on 2024-04-21 04:20:47

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