Skip to content
Snippets Groups Projects
Commit af62e57b authored by Alejandro Lopez Gestoso's avatar Alejandro Lopez Gestoso
Browse files

Fixed a typo

parent 950f9c61
No related branches found
No related tags found
No related merge requests found
...@@ -110,15 +110,15 @@ To generate the documentation execute the following command: ...@@ -110,15 +110,15 @@ To generate the documentation execute the following command:
To use this library in an other library or application, in the CMakeLists.txt file, first it is necessary to locate if the library has been installed or not using the following command To use this library in an other library or application, in the CMakeLists.txt file, first it is necessary to locate if the library has been installed or not using the following command
``` FIND_PACKAGE(asterx1\_gps) ``` ``` FIND_PACKAGE(asterx1_gps) ```
In the case that the package is present, it is necessary to add the header files directory to the include directory path by using In the case that the package is present, it is necessary to add the header files directory to the include directory path by using
``` INCLUDE_DIRECTORIES(${asterx1\_gps\_INCLUDE\_DIRS}) ``` ``` INCLUDE_DIRECTORIES(${asterx1_gps_INCLUDE_DIRS}) ```
and it is also necessary to link with the desired libraries by using the following command and it is also necessary to link with the desired libraries by using the following command
``` TARGET_LINK_LIBRARIES(<executable name> ${asterx1\_gps\_LIBRARIES}) ``` ``` TARGET_LINK_LIBRARIES(<executable name> ${asterx1_gps_LIBRARIES}) ```
## Examples ## Examples
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment