File indexing completed on 2024-04-28 03:44:23

0001 #!/bin/sh
0002 
0003 echo -n "" > "CMakeLists.txt"
0004 
0005 echo "install( FILES" >> "CMakeLists.txt"
0006 
0007 for file in *.png
0008 do
0009      echo "\t ${file}" >> "CMakeLists.txt"
0010 done
0011 
0012 set -f
0013 echo '\t DESTINATION ${KDE_INSTALL_DATADIR}/kstars/kstarslite/qml/images )' >> "CMakeLists.txt"