this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixes cmake case-matching warnings

The actual warnings are:

---
CMake Warning (dev) at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:272 (message):
The package name passed to `find_package_handle_standard_args` (SETCAP)
does not match the name of the calling package (Setcap). This can lead to
problems in calling code that expects `find_package` result variables
(e.g., `_FOUND`) to follow a certain pattern.
Call Stack (most recent call first):
cmake/FindSetcap.cmake:8 (find_package_handle_standard_args)
CMakeLists.txt:82 (find_package)
This warning is for project developers. Use -Wno-dev to suppress it.

CMake Warning (dev) at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:272 (message):
The package name passed to `find_package_handle_standard_args` (FFMPEG)
does not match the name of the calling package (FFmpeg). This can lead to
problems in calling code that expects `find_package` result variables
(e.g., `_FOUND`) to follow a certain pattern.
Call Stack (most recent call first):
cmake/FindFFmpeg.cmake:91 (find_package_handle_standard_args)
src/CoreAudio/CMakeLists.txt:6 (find_package)
This warning is for project developers. Use -Wno-dev to suppress it.

---

+2 -2
+1 -1
cmake/FindFFmpeg.cmake
··· 88 88 endif() 89 89 endif() 90 90 91 - find_package_handle_standard_args(FFMPEG 91 + find_package_handle_standard_args(FFmpeg 92 92 FOUND_VAR FFMPEG_FOUND 93 93 REQUIRED_VARS 94 94 FFMPEG_LIBRARIES
+1 -1
cmake/FindSetcap.cmake
··· 5 5 PATHS /bin /usr/bin /sbin /usr/sbin 6 6 ) 7 7 8 - find_package_handle_standard_args(SETCAP DEFAULT_MSG SETCAP_EXECUTABLE) 8 + find_package_handle_standard_args(Setcap DEFAULT_MSG SETCAP_EXECUTABLE) 9 9 10 10 mark_as_advanced(SETCAP_EXECUTABLE) 11 11