From f14ca046cb7859519d233febe074d22d391e42c3 Mon Sep 17 00:00:00 2001 From: Pierre Narvor Date: Wed, 31 Aug 2022 16:14:39 +0200 Subject: [PATCH] [cmake/README] Changed repositories locations --- README.md | 7 ++++--- oculus_ros2/CMakeLists.txt | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index faebe0a..2c3aaa8 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ cd /src Clone the metapackage repository: ``` -git clone https://github.com/forssea-robotics/narval_oculus.git +git clone https://github.com/ENSTABretagneRobotics/oculus_ros2.git ``` Compile the metapackage: @@ -48,11 +48,12 @@ source install/setup.bash If you don't have an internet connection available on the system on which you want to use this node, your have to install the -[oculus_driver](https://github.com/pnarvor/oculus_driver) library beforehand. +[oculus_driver](https://github.com/ENSTABretagneRobotics/oculus_driver.git) +library beforehand. Clone or copy the oculus_driver library : ``` -git clone https://github.com/pnarvor/oculus_driver.git +git clone https://github.com/ENSTABretagneRobotics/oculus_driver.git ``` This library follows a standard CMake compilation procedure. cd into the repo diff --git a/oculus_ros2/CMakeLists.txt b/oculus_ros2/CMakeLists.txt index 2b3a75e..6f636cc 100644 --- a/oculus_ros2/CMakeLists.txt +++ b/oculus_ros2/CMakeLists.txt @@ -13,7 +13,7 @@ find_package(oculus_driver QUIET) if(NOT TARGET oculus_driver) include(FetchContent) FetchContent_Declare(oculus_driver - GIT_REPOSITORY https://github.com/pnarvor/oculus_driver.git + GIT_REPOSITORY https://github.com/ENSTABretagneRobotics/oculus_driver.git GIT_TAG v1.0 ) FetchContent_MakeAvailable(oculus_driver)