kolourpaint/gen_cmake_srcs

8 lines
195 B
Plaintext
Raw Permalink Normal View History

2022-11-21 12:38:32 +08:00
#!/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