summaryrefslogtreecommitdiffstats
path: root/meta-agl-distro/conf/distro/poky-agl.conf
diff options
context:
space:
mode:
authorClément Bénier <clement.benier@iot.bzh>2018-06-29 19:33:39 +0200
committerStéphane Desneux <stephane.desneux@iot.bzh>2018-06-29 19:09:22 +0000
commitb30999f27d11939f23c83c865601a8964aee1365 (patch)
treee0aacba4c529d1ac7fd66c70c917cf2631925dab /meta-agl-distro/conf/distro/poky-agl.conf
parentbf0b263b00e441fcba8ff11f8606967b7f58e232 (diff)
agl-service-iiodevices: add RDEPENDS on libiio
Runtime dependency is missing. agl-service-iiodevices now pulls the appropriate deps. Change-Id: I32b2e6d3d35d4fdc9a2e45fc8a0fe0183e1204ae Signed-off-by: Clément Bénier <clement.benier@iot.bzh>
Diffstat (limited to 'meta-agl-distro/conf/distro/poky-agl.conf')
0 files changed, 0 insertions, 0 deletions
hlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
###########################################################################
# Copyright 2015, 2016, 2017 IoT.bzh
#
# author: Fulup Ar Foll <fulup@iot.bzh>
# contrib: Romain Forlot <romain.forlot@iot.bzh>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
###########################################################################

# Add target to project dependency list
PROJECT_TARGET_ADD(openxc-message-format)

	# Define project Target
	add_library(${TARGET_NAME} STATIC 
		gen/cpp/openxc.pb.c
		${PROJECT_LIBDIR}/nanopb/pb_encode.c
		${PROJECT_LIBDIR}/nanopb/pb_decode.c
		${PROJECT_LIBDIR}/nanopb/pb_common.c)

	# Binder exposes a unique public entry point
	SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES
		OUTPUT_NAME ${TARGET_NAME}
	)

	# Define target includes
	TARGET_INCLUDE_DIRECTORIES(${TARGET_NAME}
		PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/gen/cpp
		${CMAKE_CURRENT_SOURCE_DIR}/../nanopb
	)

	# Library dependencies (include updates automatically)
	TARGET_LINK_LIBRARIES(${TARGET_NAME}
		${link_libraries})