diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-10-15 11:37:36 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-10-15 11:44:38 -0700 |
commit | 134bffe9f367d7a08e58ef2b3c3568ea9e25560c (patch) | |
tree | 114a17d0906af7c9cbd7474ba5d093fc078dc369 | |
parent | f520573c3dd103b2e409d1edc4b960985aa2e1eb (diff) | |
download | uhd-134bffe9f367d7a08e58ef2b3c3568ea9e25560c.tar.gz uhd-134bffe9f367d7a08e58ef2b3c3568ea9e25560c.tar.bz2 uhd-134bffe9f367d7a08e58ef2b3c3568ea9e25560c.zip |
docs: Fix more Doxygen warnings due to spurious backslashes
-rw-r--r-- | host/docs/build.dox.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/host/docs/build.dox.in b/host/docs/build.dox.in index bd3b10b08..819755b9a 100644 --- a/host/docs/build.dox.in +++ b/host/docs/build.dox.in @@ -93,7 +93,7 @@ The directory to which you extract libusb must not contain spaces. This is to sa - **Minimum Version:** @PY_MAKO_MIN_VERSION@ - **Usage:** build time (required) - **Download URL:** http://www.makotemplates.org/download.html -- **Alternative method:** You can use `pip` or `easy_install` to install Mako from PyPi. To install it using 'pip' on Windows, navigate to Python scripts folder, e.g. ´C:\local\Python37\Scripts`, and run the following command: +- **Alternative method:** You can use `pip` or `easy_install` to install Mako from PyPi. To install it using 'pip' on Windows, navigate to Python scripts folder, e.g. ´C:\\local\\Python37\\Scripts`, and run the following command: pip install mako @@ -252,15 +252,15 @@ On Windows, CMake does not have the advantage of `pkg-config`, so we must manually tell CMake how to locate the LibUSB header and lib. - From the CMake GUI, select "Advanced View". -- Set or add the following entry with type PATH `LIBUSB_INCLUDE_DIRS` to the directory for `libusb.h`, e.g. `C:\local\libusb-1.0.22\include\libusb-1.0`. -- Set or add the following entry with type FILEPATH `LIBUSB_LIBRARIES` to the full path for `libusb-1.0.lib`, e.g. `C:\local\libusb-1.0.22\MS64\dll\libusb-1.0.lib`. +- Set or add the following entry with type PATH `LIBUSB_INCLUDE_DIRS` to the directory for `libusb.h`, e.g. `C:\\local\\libusb-1.0.22\\include\\libusb-1.0`. +- Set or add the following entry with type FILEPATH `LIBUSB_LIBRARIES` to the full path for `libusb-1.0.lib`, e.g. `C:\\local\\libusb-1.0.22\\MS64\\dll\\libusb-1.0.lib`. - Recommend the static `libusb-1.0.lib` to simplify runtime dependencies. - Check the box to enable USB support, click "Configure" and "Generate". <b>Note:</b> On Windows, LibUSB v1.0.19 is required to use most USB3 controllers. \subsection build_in_msvc Build the project in MSVC -- Open the generated project file in MSVC, e.g. `C:\cygwin64\home\admin\uhd\host\build\UHD.sln`. +- Open the generated project file in MSVC, e.g. `C:\\cygwin64\\home\\admin\\uhd\\host\\build\\UHD.sln`. - Change the build type from "Debug" to "Release". - Select the "Build All" target, right-click, and choose "Build". - Select the install target, right-click, and choose "Build". @@ -272,7 +272,7 @@ You need to be an administrator or to run MSVC as administrator. \subsection build_msvc_cmd_line Build the project in MSVC (command line) Open the Visual Studio Command Prompt Shorcut: - cd <uhd-repo-path>\host\build + cd <uhd-repo-path>\\host\\build DevEnv uhd.sln /build Release /project ALL_BUILD DevEnv uhd.sln /build Release /project INSTALL |