diff --git a/projects/FastRT/CMakeLists.txt b/projects/FastRT/CMakeLists.txt index d929874..055b2cb 100644 --- a/projects/FastRT/CMakeLists.txt +++ b/projects/FastRT/CMakeLists.txt @@ -4,7 +4,7 @@ set(LIBARARY_NAME "FastRT" CACHE STRING "The Fastreid-tensorrt library name") set(LIBARARY_VERSION_MAJOR "0") set(LIBARARY_VERSION_MINOR "0") -set(LIBARARY_VERSION_SINOR "1") +set(LIBARARY_VERSION_SINOR "2") set(LIBARARY_SOVERSION "0") set(LIBARARY_VERSION "${LIBARARY_VERSION_MAJOR}.${LIBARARY_VERSION_MINOR}.${LIBARARY_VERSION_SINOR}") project(${LIBARARY_NAME}${LIBARARY_VERSION}) @@ -54,4 +54,4 @@ if(BUILD_DEMO) message(STATUS "BUILD_DEMO: ON") else() message(STATUS "BUILD_DEMO: OFF") -endif() \ No newline at end of file +endif() diff --git a/projects/FastRT/demo/CMakeLists.txt b/projects/FastRT/demo/CMakeLists.txt index 1cc0f42..68b28fe 100644 --- a/projects/FastRT/demo/CMakeLists.txt +++ b/projects/FastRT/demo/CMakeLists.txt @@ -16,7 +16,7 @@ add_executable(${APP_PROJECT_NAME} inference.cpp) find_package(OpenCV) target_include_directories(${APP_PROJECT_NAME} PUBLIC - OpenCV_INCLUDE_DIRS + ${OpenCV_INCLUDE_DIRS} ) target_link_libraries(${APP_PROJECT_NAME} PUBLIC diff --git a/projects/FastRT/fastrt/CMakeLists.txt b/projects/FastRT/fastrt/CMakeLists.txt index aefecd0..2cfcc72 100644 --- a/projects/FastRT/fastrt/CMakeLists.txt +++ b/projects/FastRT/fastrt/CMakeLists.txt @@ -24,7 +24,7 @@ PUBLIC find_package(OpenCV) target_include_directories(${PROJECT_NAME} PUBLIC - OpenCV_INCLUDE_DIRS + ${OpenCV_INCLUDE_DIRS} ) target_link_libraries(${PROJECT_NAME}