hostsupport/hostthreadadapter/CMakeLists.txt
branchbug235_bringup_0
changeset 55 09263774e342
parent 54 067180f57b12
child 56 40cc73c24bf8
equal deleted inserted replaced
54:067180f57b12 55:09263774e342
     1 # Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 # All rights reserved.
       
     3 # This component and the accompanying materials are made available
       
     4 # under the terms of "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 # Nokia Corporation - initial contribution.
       
    10 #
       
    11 # Contributors:
       
    12 #
       
    13 # Description:
       
    14 # CMake meta build file for hostthreadadapter
       
    15 
       
    16 set(HTA_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
       
    17 set(HTA_INC_DIR ${CMAKE_CURRENT_SOURCE_DIR}/inc)
       
    18 
       
    19 set(HTA_SRC_FILES
       
    20     ${HTA_INC_DIR}/hostthreadadapter.h
       
    21     ${HTA_INC_DIR}/platformthreading.h
       
    22     ${HTA_INC_DIR}/platformtypes.h
       
    23 
       
    24     ${HTA_SRC_DIR}/platformthreading.cpp
       
    25   )
       
    26 
       
    27 include_directories(
       
    28   ${HTA_INC_DIR}
       
    29   )
       
    30 
       
    31 link_directories(${GLOBAL_LIB_DIR})
       
    32 
       
    33 add_library(hostthreadadapter STATIC ${HTA_SRC_FILES})