summaryrefslogtreecommitdiffstats
path: root/binding/gdbus
AgeCommit message (Expand)AuthorFilesLines
2020-12-19Getting network registration of connected phone device.koi_10.92.0koi/10.92.010.92.0saman1-0/+1
2020-12-17Adding new verb as send_toneskoi_10.91.0koi/10.91.010.91.0saman2-0/+13
2020-11-19Getting battery level of connected phone devicesaman2-0/+81
2020-10-12Adding last call verb for calling last phone numbersaman5-78/+270
2019-06-11binding: telephony: add support for detect hw modemsMatt Ranostay1-2/+2
2019-06-03binding: telephony: remove indents in ofono_manager_set_default_modem()Matt Ranostay1-44/+42
2019-01-29binding: telephony: remove bluetooth dependencyMatt Ranostay1-3/+14
2019-01-13binding: telephony: remove compiler warningsMatt Ranostay6-114/+120
2018-11-11binding: telephony: fix segfaulting when modem is connectedMatt Ranostay1-1/+1
2018-10-15binding: telephony: upgrade to afm framework version 3Matt Ranostay4-6/+3
2018-09-27binding: telephony: add initial bindingMatt Ranostay16-0/+8838
{ 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(radio-binding)

	# Define project Targets
	add_library(${TARGET_NAME} MODULE
		radio-binding.c
		radio_output.c
		radio_impl_rtlsdr.c
		rtl_fm.c
		convenience/convenience.c)

	# Binder exposes a unique public entry point
	SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES
		PREFIX "libafm-"
		LABELS "BINDING"
		LINK_FLAGS ${BINDINGS_LINK_FLAG}
		OUTPUT_NAME ${TARGET_NAME}
	)

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

	# installation directory
	INSTALL(TARGETS ${TARGET_NAME}
		LIBRARY DESTINATION ${BINDINGS_INSTALL_DIR})