blob: 8924a98d1eb66ca7c98e86b4215e5d479d227a73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
###########################################################################
# @licence app begin@
# SPDX-License-Identifier: MPL-2.0
#
# Component Name: GNSSService
#
# Author: Marco Residori
#
# Copyright (C) 2013, XS Embedded GmbH
#
# License:
# This Source Code Form is subject to the terms of the
# Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
# this file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Update (2014/12/02) : Philippe Colliot <philippe.colliot@mpsa.com>,
# PSA Peugeot Citroen
# - introduce debug flag to disable verbosity
# @licence end@
###########################################################################
message(STATUS "GNSS-SERVICE-CLIENT")
message( STATUS "WITH_DLT = ${WITH_DLT}")
message( STATUS "WITH_GPSD = ${WITH_GPSD}")
message( STATUS "WITH_NMEA = ${WITH_NMEA}")
message( STATUS "WITH_REPLAYER = ${WITH_REPLAYER}")
message(STATUS "WITH_DEBUG = ${WITH_DEBUG}")
include_directories("${PROJECT_SOURCE_DIR}/api")
include_directories("${PROJECT_SOURCE_DIR}/src")
find_package(PkgConfig)
set(SRCS ${CMAKE_CURRENT_SOURCE_DIR}/gnss-service-client.c)
add_executable(gnss-service-client ${SRCS})
if(WITH_GPSD)
set(LIBRARIES gnss-service-use-gpsd gps)
elseif(WITH_NMEA)
set(LIBRARIES gnss-service-use-nmea rt)
elseif(WITH_REPLAYER)
set(LIBRARIES gnss-service-use-replayer)
else()
message(STATUS "Invalid cmake options!")
endif()
if(WITH_DLT)
add_definitions("-DDLT_ENABLED=1")
pkg_check_modules(DLT REQUIRED automotive-dlt)
include_directories( ${DLT_INCLUDE_DIRS} )
set(LIBRARIES ${LIBRARIES} ${DLT_LIBRARIES})
endif()
if(WITH_DEBUG)
add_definitions("-DDEBUG_ENABLED=1")
endif()
target_link_libraries(gnss-service-client ${LIBRARIES})
install(TARGETS gnss-service-client DESTINATION bin)
|