3c2b69fb5c
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@10921 178a84e3-b1eb-0310-8ba1-8eac791a3b58
12 lines
311 B
Bash
Executable File
12 lines
311 B
Bash
Executable File
#!/bin/sh
|
|
DEST_FILE="sources.cmake"
|
|
|
|
echo "# Generated by $0. Do not edit this file manually." > $DEST_FILE
|
|
echo "set(STK_SOURCES" >> $DEST_FILE
|
|
find src \
|
|
-path 'src/bullet' -prune -o \
|
|
-path 'src/ide' -prune -o \
|
|
-path 'src/wiiuse' -prune -o \
|
|
-regex ".*\.cpp" -print >> $DEST_FILE
|
|
echo ")" >> $DEST_FILE
|