os/kernelhwsrv/kernel/eka/drivers/trace/btracex.cmake
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
parent 0 bde4ae8d615e
permissions -rw-r--r--
Update contrib.
     1 # Copyright (c) 2009 Stéphane Lenclud.
     2 # All rights reserved.
     3 # This component and the accompanying materials are made available
     4 # under the terms of the License "Eclipse Public License v1.0"
     5 # which accompanies this distribution, and is available
     6 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 #
     8 # Initial Contributors:
     9 # Stéphane Lenclud.
    10 #
    11 
    12 ####################
    13 push_target(btracex)
    14 ####################
    15 
    16 #-------------------------------------------------------------------
    17 #Add this *.cmake file to our source tree
    18 #-------------------------------------------------------------------
    19 add_cmake_source()
    20 #Make sure all the output from all projects will go in one place
    21 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
    22 #Visual Studio IDE folders
    23 source_group(Sources REGULAR_EXPRESSION ".+\\.cpp$")
    24 source_group(Includes REGULAR_EXPRESSION ".+\\.h$") 	
    25 source_group(Def REGULAR_EXPRESSION ".+\\.def$") 	
    26 #-------------------------------------------------------------------
    27 
    28 
    29 #-------------------------------------------------------------------
    30 #Define our source and target
    31 #-------------------------------------------------------------------
    32 get_source(source)
    33 add_library (btracex SHARED ${source} btracex.cpp ../../kernel/win32/d_entry.cpp)
    34 target_link_libraries(btracex emulator ekern)
    35 set_target_properties(btracex PROPERTIES SUFFIX ".ldd")
    36 #-------------------------------------------------------------------
    37 
    38 
    39 #-------------------------------------------------------------------
    40 #Fix up include directories
    41 #-------------------------------------------------------------------
    42 system_include(/epoc32/include)
    43 system_include(/epoc32/include/platform)
    44 system_include(/epoc32/include/platform/memmodel/emul)
    45 system_include(/epoc32/include/platform/nkern)
    46 system_include(/epoc32/include/platform/nkern/win32)
    47 system_include(/epoc32/include/platform/kernel)
    48 #-------------------------------------------------------------------
    49 
    50 
    51 
    52 #-------------------------------------------------------------------
    53 #Fix up compiler defines
    54 #-------------------------------------------------------------------
    55 add_define(__EXPORT_MEMCPY__)
    56 add_define(__MEMMODEL_EMUL_SINGLE_HOST_PROCESS__)				
    57 add_define(__IN_KERNEL__)
    58 add_define(__KERNEL_MODE__)
    59 #-------------------------------------------------------------------
    60 
    61 
    62 
    63 
    64 
    65 ####################
    66 pop_target(btracex)
    67 ####################
    68 
    69 
    70