Use LIB_SUFFIX as lib installation path.
[profile/ivi/dlt-daemon.git] / src / lib / CMakeLists.txt
1 #######
2 # Dlt - Diagnostic Log and Trace
3 # @licence make begin@
4 #
5 # Copyright (C) 2011-2012, BMW AG - Alexander Wenzel <alexander.aw.wenzel@bmw.de>
6
7 # Contributions are licensed to the GENIVI Alliance under one or more
8 # Contribution License Agreements.
9
10 # This Source Code Form is subject to the terms of the
11 # Mozilla Public License, v. 2.0. If a  copy of the MPL was not distributed with
12 # this file, You can obtain one at http://mozilla.org/MPL/2.0/.
13 #
14 # @licence end@
15 ########q
16
17 set(dlt_LIB_SRCS dlt_user dlt_client dlt_filetransfer ${CMAKE_SOURCE_DIR}/src/shared/dlt_common.c ${CMAKE_SOURCE_DIR}/src/shared/dlt_user_shared.c ${CMAKE_SOURCE_DIR}/src/shared/dlt_shm.c)
18
19 add_library(dlt ${dlt_LIB_SRCS})
20 target_link_libraries(dlt rt ${CMAKE_THREAD_LIBS_INIT})
21
22 set_target_properties(dlt PROPERTIES VERSION ${DLT_VERSION} SOVERSION ${DLT_MAJOR_VERSION})
23
24 install(TARGETS dlt
25         LIBRARY DESTINATION ${LIB_INSTALL_DIR}
26         ARCHIVE DESTINATION ${LIB_INSTALL_DIR}/static
27         COMPONENT base)
28
29