wlanutilities/wpswizard/wpswizard.pro
branchRCL_3
changeset 25 f28ada11abbf
parent 24 63be7eb3fc78
equal deleted inserted replaced
24:63be7eb3fc78 25:f28ada11abbf
     1 #
       
     2 # Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3 # All rights reserved.
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 #
       
     9 # Initial Contributors:
       
    10 # Nokia Corporation - initial contribution.
       
    11 #
       
    12 # Contributors:
       
    13 #
       
    14 # Description: WPS wizard 
       
    15 #
       
    16 
       
    17 
       
    18 TEMPLATE = lib
       
    19 TARGET = wpswizard
       
    20 DEFINES += BUILD_WPS_WIZARD_DLL
       
    21 VERSION = 0.0.1
       
    22 CONFIG += hb
       
    23 MOC_DIR = build
       
    24 RCC_DIR = build
       
    25 RESOURCES += resources/wpswizard_resource.qrc
       
    26 TRANSLATIONS += wpswizardplugin.ts
       
    27 
       
    28 DOCML += \
       
    29     resources/occ_wps_01_05.docml \
       
    30     resources/occ_wps_02_03.docml \
       
    31     resources/occ_wps_P4.docml
       
    32 
       
    33 INCLUDEPATH += inc \
       
    34         ../inc
       
    35 
       
    36 HEADERS += inc/wpswizard.h \
       
    37     inc/wpswizard_p.h \
       
    38     inc/wpswizardpage.h \
       
    39     inc/wpswizardsteptwo.h \
       
    40     inc/wpswizardstepthreebutton.h \
       
    41     inc/wpswizardstepthreenumber.h \
       
    42     inc/wpswizardstepfour.h \
       
    43     inc/wpswizardstepfour_p.h \
       
    44     inc/wpswizardstepfive.h \
       
    45     inc/cwpsactiverunner.h \
       
    46     inc/mwpsactiverunnercallback.h \
       
    47     
       
    48 SOURCES += src/wpswizard_p.cpp \
       
    49     src/wpswizard.cpp \
       
    50     src/wpswizardpage.cpp \
       
    51     src/wpswizardsteptwo.cpp \
       
    52     src/wpswizardstepthreebutton.cpp \
       
    53     src/wpswizardstepthreenumber.cpp \
       
    54     src/wpswizardstepfour.cpp \
       
    55     src/wpswizardstepfour_p.cpp \
       
    56     src/wpswizardstepfive.cpp \
       
    57     src/cwpsactiverunner.cpp
       
    58     
       
    59 
       
    60 symbian { 
       
    61 
       
    62     LIBS += -lecom    
       
    63         
       
    64     TARGET.UID3 = 0x2003D2FE
       
    65     TARGET.CAPABILITY = CAP_GENERAL_DLL
       
    66     
       
    67     TARGET.EPOCALLOWDLLDATA = 1
       
    68         
       
    69     MMP_RULES += "USERINCLUDE traces"
       
    70     
       
    71     # location of directories for def files
       
    72     defFilePath = .
       
    73     
       
    74     BLD_INF_RULES.prj_exports += "rom/wpswizard.iby CORE_MW_LAYER_IBY_EXPORT_PATH(wpswizard.iby)"
       
    75     BLD_INF_RULES.prj_exports += "rom/wpswizard_resources.iby LANGUAGE_APP_LAYER_IBY_EXPORT_PATH(wpswizard_resources.iby)"
       
    76     BLD_INF_RULES.prj_exports += "inc/wpswizard.h |../inc/wpswizard.h"       
       
    77 }
       
    78 
       
    79 include (stubs/stubs.pri)
       
    80