From 990ea397aaeaf10f7767e6e1bc346f765e44ba6b Mon Sep 17 00:00:00 2001 From: Reto Zingg Date: Sun, 4 Jul 2010 00:05:52 +0300 Subject: [PATCH] add qmake .pro file --- mancala.pro | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 mancala.pro diff --git a/mancala.pro b/mancala.pro new file mode 100644 index 0000000..ca651db --- /dev/null +++ b/mancala.pro @@ -0,0 +1,36 @@ +QMAKEVERSION = $$[QMAKE_VERSION] +ISQT4 = $$find(QMAKEVERSION, ^[2-9]) +isEmpty( ISQT4 ) { +error("Use the qmake include with Qt4.4 or greater, on Debian that is qmake-qt4"); +} + +TEMPLATE = subdirs +SUBDIRS = src +CONFIG += ordered + +DATAPATH = /opt/mancala/data + +40.png.path = /usr/share/icons/hicolor/40x40/apps/ +40.png.files += data/mancala.png + +mancala.desktop.path = /usr/share/applications/hildon +mancala.desktop.files += data/mancala.desktop + +help.html.path = $${DATAPATH}/ +help.html.files += data/mancala.html + +rules.path = $${DATAPATH}/rules/ +rules.files += data/rules/* + +themes.path = $${DATAPATH}/themes/ +themes.files += data/themes/* + +gamelist.xml.path = $${DATAPATH}/ +gamelist.xml.files += data/gamelist.xml + +INSTALLS += 40.png \ + mancala.desktop \ + help.html \ + rules \ + themes \ + gamelist.xml -- 1.7.9.5