blob: a7be03df2f0476b81cd57a5f83834aa753476ea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#-------------------------------------------------
#
# Project created by QtCreator 2010-08-11T11:51:09
#
#-------------------------------------------------
QT += core network
# gui needed for QImage
# QT -= gui
TARGET = baselineserver
DESTDIR = ../bin
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
include(../../common/baselineprotocol.pri)
SOURCES += main.cpp \
baselineserver.cpp \
htmlpage.cpp
HEADERS += \
baselineserver.h \
htmlpage.h
|