diff --git a/ReadMe.md b/ReadMe.md index 9b9e8fc530a91402dfdcd1a9d93b000de8d4572b..b01c63e727884df238471b7c55820c87b47d4746 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -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 -``` 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 -``` 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 -``` TARGET_LINK_LIBRARIES(<executable name> ${asterx1\_gps\_LIBRARIES}) ``` +``` TARGET_LINK_LIBRARIES(<executable name> ${asterx1_gps_LIBRARIES}) ``` ## Examples