os/kernelhwsrv/userlibandfileserver/fileserver/srofs/erofs.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/fileserver/srofs/erofs.cmake	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,92 @@
     1.4 +# Copyright (c) 2009 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(erofs)
    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 +# DEF file to make sure exports ordinals are correct
    1.33 +#-------------------------------------------------------------------
    1.34 +#set (sourcepath ../../bwins/)
    1.35 +#add_source(elocdu.def)
    1.36 +#-------------------------------------------------------------------
    1.37 +
    1.38 +
    1.39 +#-------------------------------------------------------------------
    1.40 +# Add sources
    1.41 +#-------------------------------------------------------------------
    1.42 +set (sourcepath ../srofs/)
    1.43 +add_source(sr_rofs.cpp dircache.cpp)
    1.44 +add_source(erofs_uid.cpp)
    1.45 +
    1.46 +##-- Entry point
    1.47 +#../../../kernel/eka/kernel/win32/d_entry.cpp
    1.48 +set (sourcepath ../../../kernel/eka/euser/epoc/win32/)
    1.49 +#add_source(uc_dll.cpp) #uc_atx.cpp
    1.50 +#-------------------------------------------------------------------
    1.51 +
    1.52 +
    1.53 +
    1.54 +
    1.55 +
    1.56 +#-------------------------------------------------------------------
    1.57 +#Define our source and target
    1.58 +#-------------------------------------------------------------------
    1.59 +get_source(source)
    1.60 +add_library (erofs SHARED ${source})
    1.61 +target_link_libraries(	erofs 
    1.62 +						edll efile efsrv euser
    1.63 +						) 
    1.64 +set_target_properties(erofs PROPERTIES SUFFIX ".fsy")
    1.65 +set_target_properties(erofs PROPERTIES LINK_FLAGS "/INCLUDE:__E32Dll")
    1.66 +#set_target_properties(erofs PROPERTIES LINK_FLAGS "/INCLUDE:_DllMain")
    1.67 +
    1.68 +#-------------------------------------------------------------------
    1.69 +
    1.70 +
    1.71 +#-------------------------------------------------------------------
    1.72 +#Fix up include directories
    1.73 +#-------------------------------------------------------------------
    1.74 +system_include(/epoc32/include)
    1.75 +system_include(/epoc32/include/platform)
    1.76 +#-------------------------------------------------------------------
    1.77 +
    1.78 +
    1.79 +
    1.80 +#-------------------------------------------------------------------
    1.81 +#Fix up compiler defines
    1.82 +#-------------------------------------------------------------------
    1.83 +add_define(SYMBIAN_TRACE_SYSTEM_INCLUDE)
    1.84 +#-------------------------------------------------------------------
    1.85 +
    1.86 +
    1.87 +
    1.88 +
    1.89 +
    1.90 +####################
    1.91 +pop_target(erofs)
    1.92 +####################
    1.93 +
    1.94 +
    1.95 +