forked from openkylin/kolourpaint
8 lines
195 B
Plaintext
8 lines
195 B
Plaintext
|
#!/bin/bash
|
||
|
# Recalculates the KolourPaint-specific part of CMakeLists.txt's "set(kolourpaint_SRCS"
|
||
|
|
||
|
for f in `find -name \*.cpp | cut -c3- | sort`
|
||
|
do
|
||
|
echo '${CMAKE_CURRENT_SOURCE_DIR}/'$f
|
||
|
done
|