Issue1066

Title Fix CMake warning about spelling of SoPlex
Priority wish Status resolved
Superseder Nosy List florian, jendrik, malte, silvan
Assigned To Keywords
Optional summary

Created on 2022-09-30.17:39:44 by florian, last changed by florian.

Messages
msg11171 (view) Author: florian Date: 2023-07-24.20:32:08
This was fixed in issue1076, now both places use "SoPlex".

The warning is a bit odd anyway because CMake is case-independent, so complaining that strings do not match in their upper/lower case is unexpected.
msg10847 (view) Author: florian Date: 2022-09-30.17:39:44
CMake generates the following warning because the CMake module to find SoPlex uses "soplex" in one place and "SoPlex" in another. We have to find out if we can change one of them, so the capitalization is unique.

CMake Warning (dev) at /usr/share/cmake-3.22/Modules/FindPackageHandleStandardArgs.cmake:438 (message):
  The package name passed to `find_package_handle_standard_args` (soplex)
  does not match the name of the calling package (Soplex).  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_modules/FindSoplex.cmake:70 (find_package_handle_standard_args)
  cmake_modules/FindOSI.cmake:130 (find_package)
  search/CMakeLists.txt:60 (find_package)
This warning is for project developers.  Use -Wno-dev to suppress it.
History
Date User Action Args
2023-07-24 20:32:08floriansetstatus: unread -> resolved
messages: + msg11171
2022-09-30 17:39:44floriancreate