os/kernelhwsrv/kernel/eka/drivers/trace/btracec.cmake
changeset 0 bde4ae8d615e
child 1 260cb5ec6c19
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/kernelhwsrv/kernel/eka/drivers/trace/btracec.cmake	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,60 @@
     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(btracec)
    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 +#Fix up include directories
    1.34 +#-------------------------------------------------------------------
    1.35 +include_directories(../../include)
    1.36 +#-------------------------------------------------------------------
    1.37 +
    1.38 +
    1.39 +#-------------------------------------------------------------------
    1.40 +#Define our source and target
    1.41 +#-------------------------------------------------------------------
    1.42 +get_source(source)
    1.43 +add_library (btracec SHARED ${source}
    1.44 +				btracec.cpp
    1.45 +				../../bwins/btracecu.def)
    1.46 +target_link_libraries(btracec euser)
    1.47 +#-------------------------------------------------------------------
    1.48 +
    1.49 +
    1.50 +
    1.51 +#-------------------------------------------------------------------
    1.52 +#Fix up compiler defines
    1.53 +#-------------------------------------------------------------------
    1.54 +add_define(__DLL__)
    1.55 +#-------------------------------------------------------------------
    1.56 +
    1.57 +
    1.58 +####################
    1.59 +pop_target(btracec)
    1.60 +####################
    1.61 +
    1.62 +
    1.63 +