Statistics
| Revision:

root / trunk / server_qt / server_qt.pro @ 1919

History | View | Annotate | Download (827 Bytes)

1
# -------------------------------------------------
2
# Project created by QtCreator 2010-01-09T18:25:33
3
# -------------------------------------------------
4
TARGET = nntpgrab_server_qt
5
target.path = /usr/bin
6
INSTALLS += target
7
TEMPLATE = app
8
SOURCES = nntpgrab_qt.cpp main.cpp mainserverwindow.cpp
9
HEADERS += nntpgrab_qt.h mainserverwindow.h
10
FORMS += mainserverwindow.ui
11
RC_FILE = server_qt.rc
12
INCLUDEPATH = ../nntpgrab_core \
13
    ../base \
14
    ../gui_base
15
# The gui_base include is necessary for the icon_64x64.xpm file
16

                
17
contains(CONFIG, static):win32* {
18
    LIBS += $$PWD/../nntpgrab_core/.libs/libnntpgrab.dll.a $$PWD/../base/.libs/libnntpgrab_utils.dll.a
19
} else {
20
    LIBS += -L../nntpgrab_core/.libs -lnntpgrab -L../base/.libs -lnntpgrab_utils
21
}
22

                
23
mac {
24
    LIBS += -framework AppKit -framework Carbon
25
    CONFIG += debug
26
}
27