1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/kernel/eka/euser/eexe.cmake Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,72 @@
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(eexe)
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 +#-------------------------------------------------------------------
1.33 +#Add our sources
1.34 +#-------------------------------------------------------------------
1.35 +set (sourcepath ./epoc/symc/)
1.36 +#add_source(uc_atx.cpp uc_exe.cpp)
1.37 +add_source(uc_exe.cpp)
1.38 +#-------------------------------------------------------------------
1.39 +
1.40 +
1.41 +#-------------------------------------------------------------------
1.42 +#Define our source and target
1.43 +#-------------------------------------------------------------------
1.44 +get_source(source)
1.45 +add_library (eexe STATIC ${source})
1.46 +#-------------------------------------------------------------------
1.47 +
1.48 +
1.49 +#-------------------------------------------------------------------
1.50 +#Fix up include directories
1.51 +#-------------------------------------------------------------------
1.52 +system_include(/epoc32/include)
1.53 +system_include(/epoc32/include/platform)
1.54 +user_include(../include)
1.55 +#-------------------------------------------------------------------
1.56 +
1.57 +
1.58 +#-------------------------------------------------------------------
1.59 +#Fix up compiler defines
1.60 +#-------------------------------------------------------------------
1.61 +#add_define(SYMBIAN_TRACE_SYSTEM_INCLUDE)
1.62 +#add_define(SYMBIAN_F32_ENHANCED_CHANGE_NOTIFICATION)
1.63 +#add_define(__EXPORT_MEMCPY__)
1.64 +#add_define(__MEMMODEL_EMUL_SINGLE_HOST_PROCESS__)
1.65 +#add_define(__IN_KERNEL__)
1.66 +#add_define(__KERNEL_MODE__)
1.67 +#-------------------------------------------------------------------
1.68 +
1.69 +
1.70 +####################
1.71 +pop_target(eexe)
1.72 +####################
1.73 +
1.74 +
1.75 +