controlpanelui/src/cpcategorymodel/src/cpbasepath.h
changeset 12 624337f114fe
parent 11 10d0dd0e43f1
child 14 23411a3be0db
child 19 36aa4756ee82
equal deleted inserted replaced
11:10d0dd0e43f1 12:624337f114fe
     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 
       
    18 #ifndef CPBASEPATH_H
       
    19 #define CPBASEPATH_H
       
    20 
       
    21 #ifdef Q_OS_SYMBIAN
       
    22         #define CP_PLUGIN_PATH QString("/resource/qt/plugins/controlpanel")
       
    23         #define CP_PLUGIN_CONFIG_PATH QString("/resource/qt/plugins/controlpanel/config")
       
    24 #else 
       
    25 	#ifdef _DEBUG
       
    26 		#define CP_PLUGIN_PATH QString("/ControlPanel/debug/bin")
       
    27 		#define CP_PLUGIN_CONFIG_PATH QString("/ControlPanel/debug/bin/config")
       
    28 	#else
       
    29 		#define CP_PLUGIN_PATH QString("/ControlPanel/release/bin")
       
    30 		#define CP_PLUGIN_CONFIG_PATH QString("/ControlPanel/release/bin/config")
       
    31 	#endif
       
    32 #endif 
       
    33 
       
    34 #endif /* CPBASEPATH_H */