]> sigrok.org Git - libserialport.git/blame - examples/README
Add Visual Studio projects and solution to build example programs.
[libserialport.git] / examples / README
CommitLineData
8c1a14e6
ML
1This directory contains example programs showing how to use libserialport.
2
3The examples currently included are:
4
5list_ports.c - displays a list of ports on the system.
6port_info.c - displays info about a particular port on the system.
7
8The programs themselves are completely OS-independent, and require only a
9C compiler and libserialport.
10
67b55d10
ML
11The 'examples.sln' file is a solution file for Microsoft Visual Studio 2019
12which will build libserialport and all of the example programs.
13
8c1a14e6
ML
14The Makefile in this directory will attempt to build all the examples,
15using 'gcc' to compile them and 'pkg-config' to discover the include
16paths and linker settings needed to build with libserialport. It provides
17a minimal example of how to write a Makefile to build a program using
18libserialport.
19
20If you have make, gcc, pkg-config and libserialport installed correctly
21then running 'make' should build the example programs in this directory.
22If this doesn't work, you may need to modify the Makefile or set necessary
23paths in your environment to suit your system.
24
25You can also build these examples using any other compiler, IDE or build
26system. You just need the libserialport.h header available to compile them,
27and the libserialport library available to link and run them.
ee12a01e
ML
28
29These example files are hereby released into the public domain by the author.