Skip to content

Commit f71574c

Browse files
committed
Update paths
1 parent ba29428 commit f71574c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/cpp/asynchronous_api/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ This example demonstrates how to use a C++ API of OpenVINO Model API for asynchr
1313
- Install third party dependencies by running the following script:
1414

1515
```bash
16-
chmod +x ../../../model_api/cpp/install_dependencies.sh
17-
sudo ../../../model_api/cpp/install_dependencies.sh
16+
chmod +x ../../../src/cpp/install_dependencies.sh
17+
sudo ../../../src/cpp/install_dependencies.sh
1818
```
1919

2020
- Build example:

examples/cpp/synchronous_api/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ This example demonstrates how to use a C++ API of OpenVINO Model API for synchro
1111
- Install third party dependencies by running the following script:
1212

1313
```bash
14-
chmod +x ../../../model_api/cpp/install_dependencies.sh
15-
sudo ../../../model_api/cpp/install_dependencies.sh
14+
chmod +x ../../../src/cpp/install_dependencies.sh
15+
sudo ../../../src/cpp/install_dependencies.sh
1616
```
1717

1818
- Build example:

tests/cpp/accuracy/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ include(../cmake/common.cmake)
6666
find_package(OpenCV REQUIRED COMPONENTS core highgui videoio imgproc imgcodecs)
6767
find_package(OpenVINO REQUIRED COMPONENTS Runtime)
6868

69-
add_subdirectory(../../../model_api/cpp ${tests_BINARY_DIR}/model_api/cpp)
69+
add_subdirectory(../../../src/cpp ${tests_BINARY_DIR}/model_api/cpp)
7070

7171
add_test(NAME test_accuracy SOURCES test_accuracy.cpp DEPENDENCIES model_api)
7272
add_test(NAME test_YOLOv8 SOURCES test_YOLOv8.cpp DEPENDENCIES model_api)

tests/cpp/precommit/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ include(../cmake/common.cmake)
6565
find_package(OpenCV REQUIRED COMPONENTS core highgui videoio imgproc imgcodecs)
6666
find_package(OpenVINO REQUIRED COMPONENTS Runtime)
6767

68-
add_subdirectory(../../../model_api/cpp ${tests_BINARY_DIR}/model_api/cpp)
68+
add_subdirectory(../../../src/cpp ${tests_BINARY_DIR}/model_api/cpp)
6969

7070
add_test(NAME test_sanity SOURCES test_sanity.cpp DEPENDENCIES model_api)
7171
add_test(NAME test_model_config SOURCES test_model_config.cpp DEPENDENCIES model_api)

0 commit comments

Comments
 (0)