filemanager/src/inc/commonutils.pri
branchRCL_3
changeset 21 65326cf895ed
parent 20 491b3ed49290
child 22 f5c50b8af68c
equal deleted inserted replaced
20:491b3ed49290 21:65326cf895ed
     1 #
       
     2 # Copyright (c) 2009 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: 
       
    15 #
       
    16 
       
    17 INTERNAL_HEADERS += $$PWD/fmutils.h \
       
    18                     $$PWD/fmdrivemodel.h \
       
    19                     $$PWD/fmfileiconprovider.h \
       
    20                     $$PWD/fmdrivewatcher/fmdrivewatcher.h \
       
    21                     $$PWD/fmfiletyperecognizer.h
       
    22                     
       
    23 INTERNAL_SOURCES += $$PWD/fmdrivemodel.cpp \
       
    24                     $$PWD/fmfileiconprovider.cpp \
       
    25                     $$PWD/fmdrivewatcher/fmdrivewatcher.cpp \
       
    26                     $$PWD/fmfiletyperecognizer.cpp \
       
    27                     $$PWD/fmutils.cpp
       
    28 
       
    29 symbian {
       
    30     INTERNAL_HEADERS += $$PWD/fms60utils.h \
       
    31                         $$PWD/fmdrivewatcher/private/symbian/fmdrivewatcherprivate.h \
       
    32                         $$PWD/fmdrivewatcher/private/symbian/fmdriveevent.h
       
    33 
       
    34     INTERNAL_SOURCES += $$PWD/fmutils_s60.cpp \
       
    35                         $$PWD/fms60utils.cpp \
       
    36                         $$PWD/fmdrivewatcher/private/symbian/fmdrivewatcherprivate.cpp \
       
    37                         $$PWD/fmdrivewatcher/private/symbian/fmdriveevent.cpp
       
    38 }
       
    39 win32 {
       
    40     INCLUDEPATH += $$PWD/fmdrivewatcher/
       
    41     INCLUDEPATH += $$PWD/fmdrivewatcher/private/win32/
       
    42 
       
    43     INTERNAL_HEADERS += $$PWD/fmdrivewatcher/private/win32/fmdrivewatcherprivate.h
       
    44 
       
    45     INTERNAL_SOURCES += $$PWD/fmutils_win.cpp \
       
    46                         $$PWD/fmdrivewatcher/private/win32/fmdrivewatcherprivate.cpp
       
    47 
       
    48 }
       
    49 
       
    50 HEADERS += $$INTERNAL_HEADERS
       
    51 SOURCES += $$INTERNAL_SOURCES