0
|
1 |
/* Copyright (c) 2007 - 2008 Nokia Corporation
|
|
2 |
*
|
|
3 |
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4 |
* you may not use this file except in compliance with the License.
|
|
5 |
* You may obtain a copy of the License at
|
|
6 |
*
|
|
7 |
* http://www.apache.org/licenses/LICENSE-2.0
|
|
8 |
*
|
|
9 |
* Unless required by applicable law or agreed to in writing, software
|
|
10 |
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
11 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12 |
* See the License for the specific language governing permissions and
|
|
13 |
* limitations under the License.
|
|
14 |
*/
|
|
15 |
targettype dll
|
|
16 |
TARGET ${{PREFIX}}_locationacq.pyd
|
|
17 |
|
|
18 |
CAPABILITY ${{DLL_CAPABILITIES}}
|
|
19 |
|
|
20 |
${{COMPILER_FLAGS}}
|
|
21 |
SYSTEMINCLUDE \epoc32\include\python25
|
|
22 |
SYSTEMINCLUDE \epoc32\include\stdapis
|
|
23 |
SYSTEMINCLUDE \epoc32\include
|
|
24 |
|
|
25 |
USERINCLUDE ..\inc
|
|
26 |
|
|
27 |
LIBRARY python25.lib
|
|
28 |
LIBRARY euser.lib
|
|
29 |
LIBRARY lbs.lib // location acquisition
|
|
30 |
|
|
31 |
|
|
32 |
SOURCEPATH ..\src
|
|
33 |
|
|
34 |
SOURCE locationacqmodule.cpp
|
|
35 |
SOURCE posdatafetcher.cpp
|
|
36 |
|
|
37 |
|
|
38 |
#if defined(ARMCC)
|
|
39 |
deffile eabi\_locationacq
|
|
40 |
#elif defined(WINSCW)
|
|
41 |
deffile bwins\_locationacq
|
|
42 |
#endif
|