equal
deleted
inserted
replaced
|
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 SEARCHBASEPATH_H |
|
19 #define SEARCHBASEPATH_H |
|
20 |
|
21 #ifdef Q_OS_SYMBIAN |
|
22 #define SEARCH_PLUGIN_PATH QString("/resource/qt/plugins/onlinesearch") |
|
23 #define SEARCH_PLUGIN_CONFIG_PATH QString("/resource/qt/plugins/onlinesearch/config") |
|
24 #else |
|
25 #ifdef _DEBUG |
|
26 #define SEARCH_PLUGIN_PATH QString("/onlinesearch/debug/bin") |
|
27 #define SEARCH_PLUGIN_CONFIG_PATH QString("/onlinesearch/debug/bin/config") |
|
28 #else |
|
29 #define SEARCH_PLUGIN_PATH QString("/onlinesearch/release/bin") |
|
30 #define SEARCH_PLUGIN_CONFIG_PATH QString("/onlinesearch/release/bin/config") |
|
31 #endif |
|
32 #endif |
|
33 |
|
34 #endif /* SEARCHBASEPATH_H */ |