Skip to content

Commit

Permalink
Fix Build error (#169)
Browse files Browse the repository at this point in the history
Building on Pop_os resulted in an At least one entry of URL is a path (invalid in a list) warning. This seems to be caused by a forgotten newline in this function. I'm no expert at this, so please correct me if I'm wrong, but this change got my build working again.
  • Loading branch information
RikvdHeijden committed Mar 12, 2023
1 parent 905b96f commit e1df557
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/BuildMyOpenCV.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ endif()

ExternalProject_Add(
OpenCV_Build
URL https://github.com/opencv/opencv/archive/refs/tags/4.7.0.tar.gz DOWNLOAD_EXTRACT_TIMESTAMP
true
DOWNLOAD_EXTRACT_TIMESTAMP true
URL https://github.com/opencv/opencv/archive/refs/tags/4.7.0.tar.gz
PATCH_COMMAND ${OpenCV_INSTALL_CCACHE}
BUILD_COMMAND ${CMAKE_COMMAND} --build <BINARY_DIR> --config ${OpenCV_BUILD_TYPE}
BUILD_BYPRODUCTS
Expand Down

0 comments on commit e1df557

Please sign in to comment.