Skip to content
Snippets Groups Projects
Commit e53523e1 authored by Martin Heistermann's avatar Martin Heistermann
Browse files

Avoid CLP finder crash if CoinUtils not found.

parent 0d41aaf6
No related branches found
No related tags found
1 merge request!18Avoid CLP finder crash if CoinUtils not found.
Pipeline #25940 failed
......@@ -4,7 +4,11 @@
if(NOT TARGET Coin::CLP)
if(NOT TARGET Coin::CoinUtils)
find_package(CoinUtils REQUIRED)
find_package(CoinUtils QUIET)
if(NOT TARGET Coin::CoinUtils)
message(STATUS "FindCLP: Could not find CoinUtils as prerequisite of CLP.")
return()
endif()
endif()
find_path(CLP_INCLUDE_DIR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment