You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -69,28 +69,37 @@ You can customize the build with various CMake options:
69
69
# Install to a custom location
70
70
cmake -DCMAKE_INSTALL_PREFIX=/usr/local ..
71
71
72
-
Package Installation
73
-
--------------------
72
+
# Enable testing
73
+
cmake -DBUILD_TESTING=ON ..
74
74
75
-
Ubuntu/Debian
76
-
~~~~~~~~~~~~~
75
+
# Enable coverage reports
76
+
cmake -DENABLE_COVERAGE=ON ..
77
77
78
-
.. code-block:: bash
78
+
# Enable documentation generation
79
+
cmake -DBUILD_DOCUMENTATION=ON ..
80
+
81
+
.. Package Installation
82
+
.. --------------------
83
+
84
+
.. Ubuntu/Debian
85
+
.. ~~~~~~~~~~~~~
86
+
87
+
.. .. code-block:: bash
79
88
80
-
sudo apt update
81
-
sudo apt install libserial-dev
89
+
.. sudo apt update
90
+
.. sudo apt install libserial-dev
82
91
83
-
(Note: Package availability depends on your distribution)
92
+
..(Note: Package availability depends on your distribution)
84
93
85
-
From Binary Releases
86
-
~~~~~~~~~~~~~~~~~~~~~
94
+
..From Binary Releases
95
+
..~~~~~~~~~~~~~~~~~~~~~
87
96
88
-
Download the latest release from the `GitHub releases page <https://github.com/NestorDP/libserial/releases>`_ and follow the installation instructions provided with the release.
97
+
..Download the latest release from the `GitHub releases page <https://github.com/NestorDP/cppserial/releases>`_ and follow the installation instructions provided with the release.
89
98
90
99
Verifying Installation
91
100
----------------------
92
101
93
-
To verify that libserial is installed correctly, create a simple test program:
102
+
To verify that cppserial is installed correctly, create a simple test program:
0 commit comments