summaryrefslogtreecommitdiffstats
path: root/setup-creator.sh
blob: df69c0bc31dc90ce30cd6e0f14cf2be18295b5eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

# This script creates (and updates) a Qt Creator project file, for developing
# manaserv using the Qt Creator IDE.

echo "[General]" > manaserv.creator
echo "#define SQLITE_SUPPORT 1" > manaserv.config
echo "src
/usr/include/libxml2" > manaserv.includes

git ls-files \*.cpp \
             \*.h \
             \*.txt \
             \*.xml \
             \*.pro \
             \*.lua \
    > manaserv.files