telepathygabble/group/telepathy-gabble.mmp
changeset 10 59927b2d3b75
parent 0 d0f3a028347a
equal deleted inserted replaced
0:d0f3a028347a 10:59927b2d3b75
     1 /*
       
     2  * telepathy-gabble.mmp
       
     3  *
       
     4  * Copyright (C) 2006 Collabora Ltd.
       
     5  * 
       
     6  *
       
     7  * This library is free software; you can redistribute it and/or
       
     8  * modify it under the terms of the GNU Lesser General Public
       
     9  * License as published by the Free Software Foundation; either
       
    10  * version 2.1 of the License, or (at your option) any later version.
       
    11  *
       
    12  * This library is distributed in the hope that it will be useful,
       
    13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    15  * Lesser General Public License for more details.
       
    16  *
       
    17  * You should have received a copy of the GNU Lesser General Public
       
    18  * License along with this library; if not, write to the Free Software
       
    19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
       
    20  *
       
    21 
       
    22  */
       
    23 // General properties
       
    24 #include<platform_paths.hrh>
       
    25 TARGET          tg.exe
       
    26 TARGETTYPE      exe
       
    27 CAPABILITY      NetworkServices
       
    28 
       
    29 UID             0x1000008d 0x2000F853
       
    30 
       
    31 VERSION      10.0
       
    32 //EPOCHEAPSIZE 4096 4194304 // min. 4KB ja max 4MB
       
    33 #ifndef WINSCW
       
    34 EPOCHEAPSIZE 4194304 67108864 // min. 4MB ja max 64MB
       
    35 EPOCSTACKSIZE 61440
       
    36 #endif
       
    37 #ifndef WINSCW
       
    38 // Allow global writeable static data
       
    39 EPOCALLOWDLLDATA
       
    40 #endif
       
    41 
       
    42 // Macros
       
    43 MACRO 			SYMBIAN
       
    44 MACRO 			HAVE_CONFIG_H
       
    45 MACRO			HAVE_ERRNO_H VERBOSE
       
    46 
       
    47 SOURCEPATH      ../src
       
    48 
       
    49 // User include paths
       
    50 USERINCLUDE     ../inc
       
    51 USERINCLUDE	../../loudmouth/inc
       
    52 
       
    53 // System include paths
       
    54 
       
    55 MW_LAYER_SYSTEMINCLUDE
       
    56 OS_LAYER_LIBC_SYSTEMINCLUDE
       
    57 OS_LAYER_GLIB_SYSTEMINCLUDE
       
    58 OS_LAYER_SSL_SYSTEMINCLUDE
       
    59 OS_LAYER_STDCPP_SYSTEMINCLUDE
       
    60 OS_LAYER_DBUS_SYSTEMINCLUDE
       
    61 
       
    62 
       
    63 
       
    64 
       
    65 // Source files
       
    66 SOURCEPATH          ../src
       
    67 
       
    68 SOURCE gabble.c
       
    69 
       
    70 // Library dependencies
       
    71 #ifdef GCCE
       
    72 STATICLIBRARY  libcrt0_gcce.lib
       
    73 #else
       
    74 STATICLIBRARY  libcrt0.lib
       
    75 #endif
       
    76 LIBRARY        libc.lib 
       
    77 LIBRARY        euser.lib  // Needed in order to use Symbian services
       
    78 LIBRARY			libglib.lib
       
    79 LIBRARY			libgobject.lib
       
    80 LIBRARY         libdbus.lib
       
    81 LIBRARY			libgabble-convenience.lib
       
    82 LIBRARY         libdbus-glib.lib
       
    83 
       
    84 
       
    85