os/persistentdata/persistentstorage/centralrepository/group/cenrepcli.cmake
changeset 0 bde4ae8d615e
child 1 260cb5ec6c19
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/centralrepository/group/cenrepcli.cmake	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,80 @@
     1.4 +# Copyright (c) 2012 Stéphane Lenclud.
     1.5 +# All rights reserved.
     1.6 +# This component and the accompanying materials are made available
     1.7 +# under the terms of the License "Eclipse Public License v1.0"
     1.8 +# which accompanies this distribution, and is available
     1.9 +# at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +#
    1.11 +# Initial Contributors:
    1.12 +# Stéphane Lenclud.
    1.13 +#
    1.14 +
    1.15 +####################
    1.16 +push_target(centralrepository)
    1.17 +####################
    1.18 +
    1.19 +#-------------------------------------------------------------------
    1.20 +#Add this *.cmake file to our source tree
    1.21 +#-------------------------------------------------------------------
    1.22 +add_cmake_source()
    1.23 +#Make sure all the output from all projects will go in one place
    1.24 +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/../bin)
    1.25 +#Visual Studio IDE folders
    1.26 +source_group(Sources REGULAR_EXPRESSION ".+\\.cpp$")
    1.27 +source_group(Includes REGULAR_EXPRESSION ".+\\.h$") 	
    1.28 +source_group(Def REGULAR_EXPRESSION ".+\\.def$") 	
    1.29 +#-------------------------------------------------------------------
    1.30 +
    1.31 +#-------------------------------------------------------------------
    1.32 +#Add our sources
    1.33 +#-------------------------------------------------------------------
    1.34 +set (sourcepath ./)
    1.35 +add_source(cenrepcli_uid.cpp)
    1.36 +
    1.37 +set (sourcepath ../cenrepcli/)
    1.38 +add_source(centralrepository.cpp clirep.cpp)
    1.39 +
    1.40 +#-------------------------------------------------------------------
    1.41 +set (sourcepath ../bwins/)
    1.42 +add_source(CENTRALREPOSITORYU.def)
    1.43 +#-------------------------------------------------------------------
    1.44 +
    1.45 +#-------------------------------------------------------------------
    1.46 +#Define our source and target
    1.47 +#-------------------------------------------------------------------
    1.48 +get_source(source)
    1.49 +add_library(centralrepository SHARED ${source})
    1.50 +target_link_libraries(centralrepository edll euser) 
    1.51 +#-------------------------------------------------------------------
    1.52 +
    1.53 +
    1.54 +#-------------------------------------------------------------------
    1.55 +#Fix up include directories
    1.56 +#-------------------------------------------------------------------
    1.57 +user_include(../include)
    1.58 +user_include(../cenrepsrv)
    1.59 +system_include(/epoc32/include)
    1.60 +system_include(/epoc32/include/platform)
    1.61 +#-------------------------------------------------------------------
    1.62 +
    1.63 +
    1.64 +#-------------------------------------------------------------------
    1.65 +#Fix up compiler defines
    1.66 +#-------------------------------------------------------------------
    1.67 +#add_define(SYMBIAN_PKCS12)
    1.68 +#add_define(SYMBIAN_ENABLE_SPLIT_HEADERS)
    1.69 +#add_define(SYMBIAN_ENABLE_PUBLIC_PLATFORM_HEADER_SPLIT)
    1.70 +#add_define(__MEMMODEL_EMUL_SINGLE_HOST_PROCESS__)				
    1.71 +#add_define(__KERNEL_MODE__)
    1.72 +#-------------------------------------------------------------------
    1.73 +
    1.74 +
    1.75 +
    1.76 +
    1.77 +
    1.78 +####################
    1.79 +pop_target(centralrepository)
    1.80 +####################
    1.81 +
    1.82 +
    1.83 +