File: qconf.pro

package info (click to toggle)
qconf 1.4-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 232 kB
  • ctags: 234
  • sloc: cpp: 2,432; makefile: 12
file content (23 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
QT      -= gui
QT      += xml
CONFIG  += console
CONFIG  -= app_bundle

HEADERS += src/stringhelp.h
SOURCES += src/stringhelp.cpp src/qconf.cpp

include($$OUT_PWD/conf.pri)

contains($$list($$[QT_VERSION]), 4.0.*|4.1.*) {
	DEFINES += DATADIR=\"$$DATADIR\"
} else {
	DEFINES += DATADIR=\\\"$$DATADIR\\\"
}

# install
#CONFIG += no_fixpath
target.path = $$BINDIR
INSTALLS += target
libfiles.path = $$DATADIR/qconf
libfiles.files = $$IN_PWD/conf $$IN_PWD/modules
INSTALLS += libfiles