os/kernelhwsrv/userlibandfileserver/domainmgr/group/domainpolicy.cmake
changeset 0 bde4ae8d615e
child 1 260cb5ec6c19
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/kernelhwsrv/userlibandfileserver/domainmgr/group/domainpolicy.cmake	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,85 @@
     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(domainpolicy)
    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 ../src/)
    1.35 +add_source(
    1.36 +domainpolicy.cpp
    1.37 +)
    1.38 +
    1.39 +set (sourcepath ../bwins/)
    1.40 +add_source(domainpolicyu.def)
    1.41 +
    1.42 +#DLL entry point
    1.43 +#set (sourcepath ../../../../kernelhwsrv/kernel/eka/euser/epoc/win32/)
    1.44 +#add_source(uc_dll.cpp) #uc_atx.cpp
    1.45 +
    1.46 +#-------------------------------------------------------------------
    1.47 +
    1.48 +#-------------------------------------------------------------------
    1.49 +#Define our source and target
    1.50 +#-------------------------------------------------------------------
    1.51 +get_source(source)
    1.52 +add_library(domainpolicy SHARED ${source} domainpolicy_uid.cpp)
    1.53 +set_target_properties(domainpolicy PROPERTIES LINK_FLAGS "/INCLUDE:__E32Dll")
    1.54 +#set_target_properties(domainpolicy PROPERTIES LINK_FLAGS "/INCLUDE:_DllMain")
    1.55 +target_link_libraries(domainpolicy edll euser)
    1.56 +#-------------------------------------------------------------------
    1.57 +
    1.58 +
    1.59 +#-------------------------------------------------------------------
    1.60 +#Fix up include directories
    1.61 +#-------------------------------------------------------------------
    1.62 +system_include(/epoc32/include)
    1.63 +system_include(/epoc32/include/platform)
    1.64 +user_include(../inc)
    1.65 +user_include(../src)
    1.66 +#-------------------------------------------------------------------
    1.67 +
    1.68 +
    1.69 +#-------------------------------------------------------------------
    1.70 +#Fix up compiler defines
    1.71 +#-------------------------------------------------------------------
    1.72 +#add_define(SYMBIAN_TRACE_SYSTEM_INCLUDE)
    1.73 +#add_define(__EXPORT_MEMCPY__)
    1.74 +#add_define(__MEMMODEL_EMUL_SINGLE_HOST_PROCESS__)				
    1.75 +#add_define(__IN_KERNEL__)
    1.76 +#add_define(__KERNEL_MODE__)
    1.77 +#-------------------------------------------------------------------
    1.78 +
    1.79 +
    1.80 +
    1.81 +
    1.82 +
    1.83 +####################
    1.84 +pop_target(domainpolicy)
    1.85 +####################
    1.86 +
    1.87 +
    1.88 +