~wosh-dev/wosh/trunk

« back to all changes in this revision

Viewing changes to src/woshsymbian.pro

  • Committer: alexpls
  • Date: 2011-01-17 06:02:56 UTC
  • Revision ID: svn-v4:9c797490-39bb-4552-981d-a380e5b88e28:trunk:494
commit 2/2

see changelog 0.8.711

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# QMAKE Configuration file
 
2
# Copyright (c) 2007-2011, WOSH - Wide Open Smart Home 
 
3
# by Alessandro Polo - OpenSmartHome.com
 
4
# All rights reserved.
 
5
################################################################
 
6
# Revision $Id: woshsymbian.pro 3775 2011-01-01 16:38:17Z alex $
 
7
################################################################
 
8
 
 
9
message( "WOSH SYMBIAN-Server for Symbian" )
 
10
 
 
11
################################################################
 
12
# generic configuration options
 
13
 
14
#
 
15
TEMPLATE = app
 
16
TARGET = woshsymbiansrv
 
17
 
 
18
################################################################
 
19
# set SYMBIAN flag for sub-project files and bundles
 
20
# this is a workaround to force definition of _OS_SYMBIAN
 
21
# and not win32, refer to common.pri
 
22
CONFIG += symbian
 
23
 
 
24
################################################################
 
25
# set flag to include the WOSH Communication framework
 
26
# (classes like AudioMessage, TextMessage)
 
27
#
 
28
CONFIG += WOSH_COMMUNICATION
 
29
CONFIG += WOSH_SECURITY
 
30
CONFIG += WOSH_NETWORK_QT
 
31
CONFIG += WOSH_PERSISTENCE_QT
 
32
 
 
33
#################################################################
 
34
# include: core, interfaces, framework
 
35
#
 
36
!include( common.pri ) {
 
37
        error( "FATAL: Project file 'common.pri' is missing! (misaligned distribution?)" )
 
38
}
 
39
################################################################
 
40
# override destination folder
 
41
#
 
42
#DESTDIR = ../bin/symbian
 
43
QT += gui
 
44
 
 
45
################################################################
 
46
# force inclusion of DiscoveryUdp service
 
47
#
 
48
!include( bundles/DiscoveryUdp/DiscoveryUdp.prf ) {
 
49
        message( "*****  No bundles/DiscoveryUdp/DiscoveryUdp.prf file found. SKIPPED. *****" )
 
50
 
51
################################################################
 
52
# force inclusion of Symbian-based device
 
53
#
 
54
## !include( bundles/SymbianDevice/SymbianDevice.prf ) {
 
55
##      error( "FATAL: Project file 'bundles/SymbianDevice/SymbianDevice.prf' is missing! (misaligned distribution?)" )
 
56
## } 
 
57
################################################################
 
58
# include application's core files
 
59
#
 
60
SOURCES += apps/woshsymbiansrv/woshsymbiansrv.cpp
 
61