00001 # Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). 00002 # All rights reserved. 00003 # This component and the accompanying materials are made available 00004 # under the terms of "Eclipse Public License v1.0" 00005 # which accompanies this distribution, and is available 00006 # at the URL "http://www.eclipse.org/legal/epl-v10.html". 00007 # Initial Contributors: 00008 # Nokia Corporation - initial contribution. 00009 # Contributors: 00010 # Description: 00011 # SensorGestureExample project demonstrates the use of SenosorGesture framework. 00012 00013 TEMPLATE = app 00014 TARGET = sensorgestureexample 00015 00016 QT += declarative 00017 00018 CONFIG += sensorgesture \ 00019 mobility 00020 MOBILITY += sensors 00021 00022 # header files 00023 HEADERS += sgexamplewidget.h 00024 00025 # implementation files 00026 SOURCES += main.cpp \ 00027 sgexamplewidget.cpp 00028 00029 # resources that will be installed when installation procedure is executed 00030 target.path += $$[QT_INSTALL_BINS] 00031 INSTALLS += target 00032 00033 # symbian specifications 00034 symbian { 00035 TARGET.UID3 = 0xef562314 00036 load(data_caging_paths) 00037 00038 sources.files = sensorgestureexample.exe 00039 sources.path = /epoc32/release/armv5/urel 00040 DEPLOYMENT += sources 00041 } 00042 00043 00044