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

0001 #!/bin/bash
0002 # Recalculates the KolourPaint-specific part of CMakeLists.txt's "set(kolourpaint_SRCS"
0003 
0004 for f in `find -name \*.cpp | cut -c3- | sort`
0005 do
0006         echo '${CMAKE_CURRENT_SOURCE_DIR}/'$f
0007 done