File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -104,9 +104,9 @@ myRISTNetSender.sendData((const uint8_t *) mydata.data(), mydata.size());
104104Add 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 )
118118add_library(ristnet STATIC IMPORTED)
119119set_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
123123include_directories(${CMAKE_CURRENT_SOURCE_DIR}/ristwrap/)
You can’t perform that action at this time.
0 commit comments