From b0ee7679c864dd12e24983481123e4c2b422be0f Mon Sep 17 00:00:00 2001 From: Mark Horvath Date: Thu, 18 Apr 2024 22:22:42 +0200 Subject: [PATCH] Add OpenCV to the list of third party sources --- SECURITY.md | 3 ++- conformity/opencv/CMakeLists.txt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/SECURITY.md b/SECURITY.md index 58022ed3c..f6b559e75 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,5 +1,5 @@ @@ -17,3 +17,4 @@ It is the responsibility of the users of such scripts to track such third party The third party sources that may be downloaded are: * Google Test 1.12.1. * Google Benchmark 1.8.3. +* OpenCV 4.9.0 (and its dependencies) diff --git a/conformity/opencv/CMakeLists.txt b/conformity/opencv/CMakeLists.txt index 8f821260e..c2fe46ac1 100644 --- a/conformity/opencv/CMakeLists.txt +++ b/conformity/opencv/CMakeLists.txt @@ -8,6 +8,7 @@ project("OpenCV Conformity" CXX) set(CMAKE_CXX_STANDARD 17) +# Please update SECURITY.md if adding, removing or changing the version of third party content. set(OPENCV_VERSION "4.9.0" CACHE STRING "Version of OpenCV") set(OPENCV_URL "https://github.com/opencv/opencv/archive/refs/tags/${OPENCV_VERSION}.tar.gz" CACHE STRING "URL of OpenCV") -- GitLab