Remove files and add TODO.

This commit is contained in:
Jonas Kvinge
2018-03-02 23:22:41 +01:00
parent cefe98736f
commit 9e0b15f249
6 changed files with 8 additions and 1500 deletions

View File

@@ -1,12 +0,0 @@
#!/bin/sh
for f in `find .`
do
file=$(basename $f)
grep -i $file CMakeLists.txt >/dev/null 2>&1
#echo $?
if [ $? -eq 0 ]; then
continue
fi
echo "$file not in CMakeLists.txt"
done