File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -61,12 +61,11 @@ system.
61
61
Inside the cpp-netlib directory, you can issue the following statements to
62
62
configure and generate the Makefiles, and build the tests::
63
63
64
- $ cd ~/cpp-netlib # we're assuming it's where cpp-netlib is
65
- $ cmake ~/cpp-netlib-build \ # cmake is built out of source
64
+ $ cd ~/cpp-netlib-build # cmake is built out of source
65
+ $ cmake ~/cpp-netlib \ # we're assuming it's where cpp-netlib is
66
66
> -DCMAKE_BUILD_TYPE=Debug \
67
67
> -DCMAKE_C_COMPILER=clang \
68
- > -DCMAKE_CXX_COMPILER=clang++ \
69
- > .
68
+ > -DCMAKE_CXX_COMPILER=clang++
70
69
71
70
Once CMake is done with generating the Makefiles and configuring the project,
72
71
you can now build the tests and run them::
@@ -79,6 +78,13 @@ If for some reason some of the tests fail, you can send the files in
79
78
``Testing/Temporary/ `` as attachments to the cpp-netlib `developers mailing
80
79
list `_.
81
80
81
+ API documentation can be generated by running the following command::
82
+
83
+ $ cd ~/cpp-netlib-build
84
+ $ make doc
85
+
86
+ The HTML output can be found in the ``html `` subdirectory.
87
+
82
88
.. _`developers mailing list` : cpp-netlib@googlegroups.com
83
89
84
90
Running Tests
You can’t perform that action at this time.
0 commit comments