diff --git a/cmake/modules/FindFtd2xx.cmake b/cmake/modules/FindFtd2xx.cmake index 0732589..11dea67 100644 --- a/cmake/modules/FindFtd2xx.cmake +++ b/cmake/modules/FindFtd2xx.cmake @@ -14,6 +14,8 @@ # # Redistribution and use is allowed according to the terms of the New BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. +# +# SPDX-License-Identifier: BSD-3-Clause if (LIBFTD2XX_LIBRARIES AND LIBFTD2XX_INCLUDE_DIRS) # in cache already diff --git a/cmake/modules/FindFtd4222.cmake b/cmake/modules/FindFtd4222.cmake index bd86fc1..d1f3f7b 100644 --- a/cmake/modules/FindFtd4222.cmake +++ b/cmake/modules/FindFtd4222.cmake @@ -15,6 +15,8 @@ # # Redistribution and use is allowed according to the terms of the New BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. +# +# SPDX-License-Identifier: BSD-3-Clause if (LIBFT4222_LIBRARIES AND LIBFT4222_INCLUDE_DIRS) # in cache already diff --git a/cmake/modules/FindJSON-C.cmake b/cmake/modules/FindJSON-C.cmake index f96701e..5b1f7ed 100644 --- a/cmake/modules/FindJSON-C.cmake +++ b/cmake/modules/FindJSON-C.cmake @@ -1,3 +1,6 @@ +# Copyright (c) 2016 Intel Corporation +# SPDX-License-Identifier: MIT + # JSON-C_FOUND - true if library and headers were found # JSON-C_INCLUDE_DIRS - include directories # JSON-C_LIBRARIES - library directories diff --git a/cmake/modules/FindNodejs.cmake b/cmake/modules/FindNodejs.cmake index c7da092..6f193cd 100644 --- a/cmake/modules/FindNodejs.cmake +++ b/cmake/modules/FindNodejs.cmake @@ -1,3 +1,6 @@ +# Copyright (c) 2015 Intel Corporation +# SPDX-License-Identifier: MIT + # Macro to add directory to NODEJS_INCLUDE_DIRS if it exists and is not /usr/include macro(add_include_dir dir) if (IS_DIRECTORY ${dir} AND NOT ${dir} STREQUAL "/usr/include") diff --git a/cmake/modules/FindSphinx.cmake b/cmake/modules/FindSphinx.cmake index 528b107..2b7dac0 100644 --- a/cmake/modules/FindSphinx.cmake +++ b/cmake/modules/FindSphinx.cmake @@ -1,3 +1,6 @@ +# Copyright (c) 2014 Intel Corporation +# SPDX-License-Identifier: MIT + find_program (SPHINX_EXECUTABLE NAMES sphinx-build HINTS $ENV{SPHINX_DIR} diff --git a/cmake/modules/FindUDEV.cmake b/cmake/modules/FindUDEV.cmake index b169671..2d9d2fb 100644 --- a/cmake/modules/FindUDEV.cmake +++ b/cmake/modules/FindUDEV.cmake @@ -1,3 +1,6 @@ +# Copyright (c) 2016 Intel Corporation +# SPDX-License-Identifier: MIT + # UDEV_FOUND - true if library and headers were found # UDEV_INCLUDE_DIRS - include directories # UDEV_LIBRARIES - library directories diff --git a/cmake/modules/FindYuidoc.cmake b/cmake/modules/FindYuidoc.cmake index 63c4937..e398fc7 100644 --- a/cmake/modules/FindYuidoc.cmake +++ b/cmake/modules/FindYuidoc.cmake @@ -1,3 +1,6 @@ +# Copyright (c) 2015 Intel Corporation +# SPDX-License-Identifier: MIT + find_program (YUIDOC_EXECUTABLE NAMES yuidoc HINTS $ENV{YUIDOC_DIR} PATHS usr usr/local diff --git a/cmake/modules/GetGitRevisionDescription.cmake b/cmake/modules/GetGitRevisionDescription.cmake index c8d27f2..3eb8bb3 100644 --- a/cmake/modules/GetGitRevisionDescription.cmake +++ b/cmake/modules/GetGitRevisionDescription.cmake @@ -29,6 +29,8 @@ # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) +# +# SPDX-License-Identifier: BSL-1.0 if(__get_git_revision_description) return() diff --git a/cmake/modules/GetGitRevisionDescription.cmake.in b/cmake/modules/GetGitRevisionDescription.cmake.in index 888ce13..058af64 100644 --- a/cmake/modules/GetGitRevisionDescription.cmake.in +++ b/cmake/modules/GetGitRevisionDescription.cmake.in @@ -12,6 +12,8 @@ # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) +# +# SPDX-License-Identifier: BSL-1.0 set(HEAD_HASH) diff --git a/cmake/modules/OpenCVDetectPython.cmake b/cmake/modules/OpenCVDetectPython.cmake index e3fc3a9..5565035 100644 --- a/cmake/modules/OpenCVDetectPython.cmake +++ b/cmake/modules/OpenCVDetectPython.cmake @@ -1,3 +1,6 @@ +# From OpenCV Project +# SPDX-License-Identifier: BSD-3-Clause +# # Find specified Python version # Arguments: # preferred_version (value): Version to check for first diff --git a/cmake/modules/version.c.in b/cmake/modules/version.c.in index 0fdf853..7250c18 100644 --- a/cmake/modules/version.c.in +++ b/cmake/modules/version.c.in @@ -1,3 +1,4 @@ +// Auto-Generated file #include "version.h" const char* gVERSION = "@VERSION@";