Skip to content

Commit 2ff6a0c

Browse files
author
Anders Cedronius
committed
updated readme
1 parent 1266eab commit 2ff6a0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ myRISTNetSender.sendData((const uint8_t *) mydata.data(), mydata.size());
104104
Add this in your CMake file.
105105

106106
```
107-
#Include cppRISTWrapper
108-
ExternalProject_Add(project_cppristwrapp
109-
GIT_REPOSITORY https://github.com/andersc/cppRISTWrapper
107+
#Include libristnet
108+
ExternalProject_Add(project_libristnet
109+
GIT_REPOSITORY https://code.videolan.org/rist/rist-cpp.git
110110
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/ristwrap
111111
BINARY_DIR ${CMAKE_CURRENT_SOURCE_DIR}/ristwrap
112112
GIT_PROGRESS 1
@@ -117,7 +117,7 @@ ExternalProject_Add(project_cppristwrapp
117117
)
118118
add_library(ristnet STATIC IMPORTED)
119119
set_property(TARGET ristnet PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/ristwrap/libristnet.a)
120-
add_dependencies(ristnet project_cppristwrapp)
120+
add_dependencies(ristnet project_libristnet)
121121
122122
#Pass information about where to find headers
123123
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/ristwrap/)

0 commit comments

Comments
 (0)